Hi Ricardo,
yes, it is possible.

You have to set the default-servlet parameter of the webdav servlet
in your web.xml to false
      ...
     <init-param>
      <param-name>default-servlet</param-name>
      <param-value>false</param-value>
      ...
and then map the webdav servlet to what you want.

  <servlet-mapping>
    <servlet-name>webdav</servlet-name>
    <url-pattern>/webdav/*</url-pattern>
  </servlet-mapping>

Regards, Stefan

Ricardo Gladwell wrote:
Hi All,

I'm trying to create a web application that has a WEBDAV repository controlled by a JSP front-end. With this in mind, I would like to have the following directory structure:

/  - Application root.
.../index.jsp
.../webdav - Slide repository

I would like to server the slide webdav root from a web application sub-directory but I can't figure out how to do it. If I modify the root for the default store in the domain.xml, Slide complains that there is no root store. Similarly, changing the WebDAV servlet mapping in the web.xml does not work.

Is this possible and, if so, how?

TIA...




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



Reply via email to