ProLinga-Soap Project |
---|
Soap Client — Class used to send a request to and receive a response from a Web Service.
#include <prolinga/SoapClient.hpp> class PlSoapClient { public:PlSoapClient (); ~PlSoapClient ();xmlDocPtr soapCall (constxmlDocPtr docRequest, constchar *serviceEndPoint); ... }; typedef PlSoapClient *PlSoapClientPtr;
xmlDocPtr PlSoapClient::soapCall (constxmlDocPtr docRequest, constchar *serviceEndPoint);
This function sends off a request to the Web Service defined in the parameter serviceEndPoint
. It
returns a response.
| the request as a libxml2 document. |
| the hostname or IP number and the TCP port number of the Web Service seperated by a colon(:). Example: localhost:8001 |
Returns : | the response as a libxml2 document. |
<< Soap Service | Appendix A. GNU Free Documentation License >> |