Discuss this help topic in SecureBlackbox Forum

WebDAV: Provide resource owner upon request

WebDAV resource owner is returned by TElWebDAVServer.ACLOptions.OnReadOwner event handler. This event is fired when a client requests for an owner for certain resource. The owner should be returned as an instance of TElWebDAVPrincipal class. The easiest way is to return a reference to a principal object from TElWebDAVServer.ACLOptions.PrincipalBackend as shown below:

C#:


Principal = MyBackend.FindPrincipalByName("test1");

How To articles about WebDAV server

Discuss this help topic in SecureBlackbox Forum