Lather.Wsdl.Analyzer (lather v1.0.42)
View SourceWSDL analysis utilities for extracting service information.
This module provides functions to analyze WSDL documents and extract relevant information for generating service clients.
Summary
Functions
Analyzes a WSDL document and extracts service information.
Generates a summary report of WSDL analysis.
Loads and analyzes a WSDL from a URL or file path.
Functions
Analyzes a WSDL document and extracts service information.
Parameters
wsdl_content- WSDL XML content as a stringoptions- Analysis options
Returns
{:ok, service_info}- Extracted service information{:error, reason}- Analysis error
Service Info Structure
%{
service_name: "ServiceName",
target_namespace: "http://example.com/service",
endpoint: "https://example.com/soap",
operations: [
%{
name: "operation_name",
input: %{message: "InputMessage", parts: [...]},
output: %{message: "OutputMessage", parts: [...]},
soap_action: "http://example.com/action"
}
],
types: [...],
authentication: %{type: :basic | :wssecurity | :custom}
}
Generates a summary report of WSDL analysis.
Loads and analyzes a WSDL from a URL or file path.