Moduleurn:org:ten60:netkernel:mod:webdav
The
webdavPut
accessor is exported by the urn:org:ten60:netkernel:mod:webdav module.
Import this module to gain access to the accessor.
Syntax
Argument | Rules | Description | path | Mandatory | the uri of the resource to update. | data | Mandatory | the uri of the source of the data to update the resource with or a literal document. |
Example UsageDPML<instr> <type>webdavPut</type> <path>http://webdav.example.com/aCollection/resource2.update</path> <data> <info> <level1>This is some new content for the resource</level1> </info> </data> <target>var:putResponse</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:webdavPut");
req.addArgument("path", [resource representation, aspect, or URI] );
req.addArgument("data", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |