Implement a WebDAV server in C#?

Posted by HaukurHaf on Stack Overflow See other posts from Stack Overflow or by HaukurHaf
Published on 2010-04-18T00:00:53Z Indexed on 2010/04/18 0:03 UTC
Read the original article Hit count: 251

Filed under:
|
|
|

We've got a CMS system written in .NET C#. This system has editing facilities for templates (essentially HTML files) and various other support files such as CSS and javascript files.

These "files" are not really files, but database records and they are edited using plain old textareas within the CMS system.

To make editing these "files" easier, on idea was to implement WebDAV support in the CMS system for these files, so users could use some WebDAV client software to connect to the CMS and then open these in VS 2008 for example.

Firstly, is this a feasible idea?

Secondly, if so ... where do start? Any good articles out there about implementing a WebDAV server in C# to provide access to either physical documents or "pseudo" documents which are in reality just records in a database?

Any input appreciated ....

© Stack Overflow or respective owner

Related posts about webdav

Related posts about .NET