John C. Dale wrote:
> What is the recommended deployment of the static site and webdav servlet
> such that direct access to the files does not go through the servlet, and
> webdav requests do?

You'll need the webdav servlet from 5.5.x You can get this here:
http://www.apache.org/dist/java-repository/tomcat/jars/servlets-webdav-5.5.15.jar

The following is from:
http://svn.apache.org/repos/asf/tomcat/container/tc5.5.x/webapps/webdav/index.html

To add remote authoring to your web application, you need to make the
following changes:

    * Add the webDAV servlet to your web application. See the web
application deployment descriptor for an example. Don't forget to make
it read/write.
    * Add a servlet mapping for the webDAV servlet with a url pattern
of "/webdav/*" to your web.xml.
    * Add an appropriate security constraint to prevent unauthorised
changes to your web application.
    * You can then edit your web application using a webDAV client
using a url like http://host:port/webapp/webdav


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

Reply via email to