.Net WebDAV Server

后端 未结 3 1229
梦谈多话
梦谈多话 2020-12-24 04:08

I am looking to implement a WebDAV server in ASP.Net. the app will be deployed to IIS 6. I have seen a few frameworks that provide this functionality, but I can\'t seem to i

3条回答
  •  盖世英雄少女心
    2020-12-24 04:33

    I would take a look at this project http://sourceforge.net/projects/webdav/ for a webdav implementation in C#. If you must build your own it is nice to reference a completed one; even better if you can reuse it.

    Yes, you will need to modify IIS6 settings to support binding the ISAPI module for .NET to all request types and not checking if a file exists. There is no other way to do this on IIS6 because web dev clients on windows will do an OPTIONS request on the root (/) of the website when checking for webdav support.

    II7 gives you more options...

提交回复
热议问题