有任何将 Rails 3 控制器变成 WebDAV 服务器的代码示例吗?
我需要实现一个动态 WebDAV 服务器,该服务器根据 Rails 3 数据库中的用户对用户进行身份验证,并将通过 WebDAV 上传的文件保存到数据库中。是否有任何代码可以执行此操作并且可以作为示例?
I need to implement a dynamic WebDAV server that authenticates users against users in a Rails 3 database and which saves files uploaded via WebDAV into the database. Is there any code out there that does this and that can serve as an example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 https://github.com/georgi/rack_dav 的来源,它就是这样做的。
Have a look at the sources of https://github.com/georgi/rack_dav, it's doing exactly that.