WebDAV ACL: Setting read permission on folder for principal -
i attempting give principal read-permission webdav-folder own. according rfc3744 should possible using proppatch, examples of propfind listed.
the example find example of how not set owner (read-only property):
<propertyupdate xmlns="dav:"> <set> <prop> <owner> <href>principal_uri</href> </owner> </prop> </set> </propertyupdate>
from i've deduced (failing) proppatch:
<propertyupdate xmlns="dav:"> <set> <prop> <acl> <ace> <principal> <href>principal_uri</href> </principal> <grant> <privilege> <read/> </privilege> </grant> </ace> </acl> </prop> </set> </propertyupdate>
i doing against bedework 3.8 calendar server. answers correctly acl-queries. proppatch above responded 404 not found. request towards valid url.
any suggestions welcome.
sincerely, christian.
to update acl's, can't use proppatch
. must use acl
http method instead.
Comments
Post a Comment