Moduleurn:org:ten60:netkernel:mod:ws
The
wsSOAPAddBody
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 | message | Mandatory | the SOAP message | body | Mandatory | the SOAP body part to add to the message |
Example UsageDPML<instr> <type>wsSOAPAddBody</type> <message>var:SOAPmessage</message> <body> <ns:MyBody xmlns:ns="http://my-body-uri"> <something /> </ns:MyBody> </body> <target>this:response</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:wsSOAPAddBody");
req.addArgument("message", [resource representation, aspect, or URI] );
req.addArgument("body", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |