How can I write a WebDAV server with Delphi? [clos

2019-04-10 12:49发布

问题:

There are some WebDAV clients available for Delphi (for example included in Indy 10). Is there also a simple WebDAV server solution written with Delphi?

If there is none yet, maybe you know an implementation in a different language (C#, Java) which you can recommend as a starting point for a WebDAV server implementation? (It does not have to be a full-featured solution, a rather simple skeleton could be even more helpful.)

回答1:

Start your search on Google for Delphi WebDAV or Delphi WebDAV Component That will give you some starting points: there indeed are components that can help you out.

--jeroen



回答2:

As far as I know, WebDav extends HTTP functionality. You should try extending some HTTP server code. I believe synapse would be good point to start, as the code is very clear (also I personally don't like Indy ;) )



回答3:

You might look at Jackrabbit, it has a WebDAV interface available (Java solution).



回答4:

May be Go implementation can be taken as a start point.

Related links:

  • https://github.com/golang/net/tree/master/webdav

  • https://github.com/golang/go/issues?q=webdav

  • Webdav Server in Go