diff options
Diffstat (limited to 'samples/xml')
-rw-r--r-- | samples/xml/propget.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/samples/xml/propget.xml b/samples/xml/propget.xml new file mode 100644 index 0000000..c8487b2 --- /dev/null +++ b/samples/xml/propget.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<D:multistatus xmlns:D="DAV:"> + + <D:response> + + <D:href>/calendar/user/</D:href> + + <D:propstat> + <D:status>HTTP/1.1 200 OK</D:status> + <D:prop> + + <D:principal-URL> + <D:href>/calendar/pinc/</D:href> + </D:principal-URL> + + <D:resourcetype> + <D:principal /> + <D:collection /> + </D:resourcetype> + + </D:prop> + </D:propstat> + + <D:propstat> + <D:status>HTTP/1.1 404 Not Found</D:status> + <D:prop> + <A:current-user-principal xmlns:A="DAV:" /> + </D:prop> + </D:propstat> + + </D:response> + + <D:response> + <D:href>/calendar/other</D:href> + <D:propstat> + <D:status>HTTP/1.1 200 OK</D:status> + <D:prop> + <D:missing /> + </D:prop> + </D:propstat> + </D:response> + + +</D:multistatus> |