SOAP client
XML
<soap:client wsdl="string" username="string" password="string" timeout="60">
ixml
</soap:client>
<soap:client /> defines a set of dynamically bound SOAP operations based on SOAP 1.1 according to a given WSDL model.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| wsdl | string | WSDL filename/URL | soap:client |
| username | string | Username | soap:client |
| password | string | Password | soap:client |
| timeout | int | Timeout in seconds | soap:client |
Examples
XML
<soap:client wsdl="http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL">
<soap:bind var="getCountryName">CountryName</soap:bind>
</soap:client>
<array var="parameters">
<item key="sCountryISOCode">DE</item>
</array>
<call func="getCountryName" var="result">
<param var="parameters"/>
</call>
<output>$result.CountryNameResult</output>
<!-- Germany -->