req=context.createSubRequest("active:webdavMkCols");
req.addArgument("path", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);
Purpose
Purpose
webdavMkCols creates a new collection resource and its parent heirarchy if required
at the location specified by the path. If the resource identified by the path
already exists then the request will fail. When the operation attempts to create a new collection
resource, all ancestors will be created if they do not already exist.
The webdavMkCols URA uses the WebDav client library from the Jakarta Slide project.
<method> contains the name of the underlying WebDav client method that was called. <path> contains the full uri of the target of the requested operation. <success> contains a boolean indicator of the success of the request. <statusCode> contains the HTTP status code returned by the server. <statusText> contains the HTTP status message returned by the server. <displayName> contains the name to use when displaying a reference to the created collection. <contentLength> will always be 0 when creating a collection. <contentType> the HTTP Content-Type (MIME type) of the new collection.
Apache WebDav always returns httpd/unix-directory. <lastModified> contains the date that the collection was last modified, i.e. was created in the default date/time format for your timezone.