Zum Hauptinhalt springen

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

NameTypeDescriptionDefined By
wsdlstringWSDL filename/URL soap:client
usernamestringUsername soap:client
passwordstringPassword soap:client
timeoutintTimeout 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 -->