The sendSoapMessage function |
In certain circumstances, there are limitations using a web service component. For example, USoft does not support soap headers when importing a web service component from WSDL. To bypass those limitations, you can create a generic web service component:
this = new com.usoft.WebServiceClient.CallWebService()
this.sendSoapMessage((U):0, (U):1, (U):2)
The user can then call this method providing the appropriate parameters: the url for invoking the web service, the soap message to be sent to the web service, the soapAction(if any defined in the wsdl). The result is the soap message returned by the web service. |