Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.
The following page has been changed by achow:
http://wiki.apache.org/tomcat/Tomcat/WebDav

The comment on the change is:
added basic setup information

------------------------------------------------------------------------------
+ == Setup ==
+ 
+ Tomcat comes prebundled with a WebDAV Level 2 servlet.  To enable, add the 
following to web.xml:
+ 
+ {{{
+ <servlet>
+   <servlet-name>webdav</servlet-name>
+   <servlet-class>org.apache.catalina.servlets.WebdavServlet</servlet-class>
+   <init-param>
+     <param-name>debug</param-name>
+     <param-value>0</param-value>
+   </init-param>
+   <init-param>
+     <param-name>listings</param-name>
+     <param-value>true</param-value>
+   </init-param>
+ 
+   <!-- The following for read-write access -->
+ 
+   <init-param>
+     <param-name>readonly</param-name>
+     <param-value>false</param-value>
+   </init-param>
+ </servlet>
+ 
+ <servlet-mapping>
+   <servlet-name>webdav</servlet-name>
+   <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+ 
+ <!-- Added to make content editable via a different URL -->
+ 
+ <servlet-mapping>
+   <servlet-name>webdav</servlet-name>
+   <url-pattern>/webdavedit/*</url-pattern>
+ </servlet-mapping>
+ }}}
+ 
  == Webdav information and solutions ==
  
   * Self:Tomcat/WebDav_MsWebfolders MS webfolder issues and solutions

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to