Moduleurn:org:ten60:netkernel:mod:webdav
The
webdavCopy
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 source of the copy. | destination | Mandatory | the uri of the destination of the copy. |
Example UsageDPML<instr> <type>webdavCopy</type> <path>http://webdav.example.com/aCollection/resource.2copy</path> <destination>http://webdav.example.com/anotherCollection/copy.of.resource</destination> <target>var:copyResponse</target> </instr> NetKernel Foundation API
req=context.createSubRequest("active:webdavCopy");
req.addArgument("path", [resource representation, aspect, or URI] );
req.addArgument("destination", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req); Purpose |