Moduleurn:org:ten60:netkernel:mod:ws
The
wsSOAPClient
accessor is exported by the urn:org:ten60:netkernel:mod:ws module.
Import this module to gain access to the accessor.
Syntax
Argument | Rules | Description | endpoint | Mandatory | The endpoint of the SOAP service | action | Optional | An optional action URI | message | Mandatory | The SOAP message request |
Example UsageDPML<instr> <type>wsSOAPClient</type> <endpoint>http://1060.org/services/example/</endpoint> <message>var:message</message> <action>urn:some:action</action> <target>this:response</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:wsSOAPClient");
req.addArgument("endpoint", [resource representation, aspect, or URI] );
req.addArgument("message", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |