WebDAV - RFC 2518 - is a protocol which allows clients to manipulate files on a remote server using HTTP.
There are two client libraries for Perl - HTTP::DAV and HTTP::Webdav. The first is an all-Perl implementation whereas the latter interfaces with the neon library.
To the best of my knowledge there is no all-Perl implementation of a WebDAV server. Therefore I have set about making one. My module, HTTP::DAVServer can be a starting point for anyone wishing to create a WebDAV server with some smarts behind it. :)
I have chosen the name HTTP::DAVServer to follow the lead of other Perl modules which can act as a server (NET::FTPServer, NET::DNSServer). I might have chosen HTTP::WebDAVServer but want to match up with client naming HTTP::DAV.
If anyone would rather I name this something else, please let me know! TIA,
Jay
- Re: RFC - HTTP::DAVServer Jay Lawrence
- Re: RFC - HTTP::DAVServer darren chamberlain
- Re: RFC - HTTP::DAVServer Ken Williams