
28-07-2009
|
 | Member | | Join Date: Apr 2008
Posts: 416
| |
| How to enable WebDAV in IIS
Web Distributed Authoring and Versioning (WebDAV) extends the HTTP/1.1 protocol to allow clients to publish, lock, and manage resources on the Web. WebDAV lets you edit files on the server instead of needing to download them first to the client. WebDAV uses port 80, the same port used by HTTP for web access. So using WebDAV means you don’t have to open any extra ports on your firewall. Integrated into IIS, WebDAV allows clients to do the following: - Manipulate resources in a WebDAV publishing directory on your server. For example, users who have been assigned the correct rights can copy and move files around in a WebDAV directory.
- Modify properties associated with certain resources. For example, a user can write to and retrieve a file's property information.
- Lock and unlock resources so that multiple users can read a file concurrently. However, only one person can modify the file at a time.
- Search the content and properties of files in a WebDAV directory.
Before enabling WebDAV on your intranet, make sure that all WebDAV clients are running the WebClient service.
To enable the WebClient service on a WebDAV client machine: - From the Start menu, point to Administrative Tools, and click Computer Management.
- In the details pane, double-click Services and Applications.
- Double-click Services.
- Scroll down, right-click WebClient, and click Properties.
- In the Startup type list box, click Automatic.
- Click Apply.
- In the Service status section, click Start.
- Click OK.
To install WebDAV on the IIS 6 or later machine, use "Add or Remove Programs" in "Control Panel" and run the "Windows Components Wizard". Go to "Application Server", "Internet Information Services", "World Wide Web Service" and then "WebDAV Publishing". Enable it by clicking on the check box before it and then click "OK" to save the changes. |