How can I write a WebDAV server with Delphi? [closed]

核能气质少年 提交于 2020-01-01 14:18:26

问题


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



来源:https://stackoverflow.com/questions/1316459/how-can-i-write-a-webdav-server-with-delphi

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!