The SoapClient example uses the WSDL class to format XML messages to talk to SOAP servers and also to convert the responses to a Qore data structure.
Basically you create a Qore data structure in the right format and pass it to the SoapClient::call() method, and the SoapClient class formats the XML request properly (well, hopefully properly, because the WSDL class does not understand every aspect of XSD yet) and sends it to the SOAP server, and then deserializes the response according to the WSDL and returns it to the caller.
The data structure passed to the SoapClient::call() method has to be in hash format, corresponding to to the structure of the message.
Here is the source: SoapClient.qc
| < Prev | Next > |
|---|





