|
DavFS
DavFSv2 implementation details
clients The DavFSv2 clientConnecting on the command line
Implementor notesDavFS seems to be the best (popular) WebDAV implementation. DavFS requires A Class 2 server, otherwise it will go into read-only mode. It is possible to go into a read-write mode without a Class 2 server, by specifying the nolocks option. By default DavFSv2 will do lots of buffering and caching. This means that even though a user has written to a file locally, it can take a while before the changes actually show up on the server. This can be quite confusing when working in teams. Protocol Details
PropertiesDavFSv2 asks for the following properties from the DAV: namespace
And from the http://apache.org/dav/props/ xml namespace
| |
► Sign in to add a comment
Hi,
> The client makes use of lock-null requests. This basically means it will lock non-existant resource before it starts writing them.
that's OK by the current RFC: http://www.webdav.org/specs/rfc4918.html#lock-unmapped-urls
regards Martin
True =) This note was added because I felt it was an interesting difference between DavFS and most other clients.