Does anyone knows how to working with Sphorium WebDAV Server Framework?
http://sourceforge.net/projects/webdav/
Does anyone knows how to working with Sphorium WebDAV Server Framework? http://sourceforge.net/projects/webdav/
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a sample application on the source-forge site, that implements DAV server that is using file system as the repository.
You can use this sample application as the starting point.
Basically you need to create your implementation of WebDAVModule, which is an IHttpModule and add logic for authentication/authorization and processing of requests.
Furthermore you’d need to implement the HTTP methods you’re interesting in (depends are you going to create Class 1 or Class 2 server). Each method has it’s own base Sphoirum class that has support for delegate based processing of the DAV pipeline.
Again, you can look into the sample application for the reference implementation for all HTTP methods for Class 1 and Class 2 servers.