I've recently installed WebDAV app as part of a 5.0.27 and 5.5.54 install. 
  I also have it installed on 4.1.29.

When I access a page from a browser (e.g. Firefox),  via: 
http://localhost:8080/webdav on 4.1.29,  it returns to me the page at 
http://localhost:8080/webdav/index.html.

When I do the same on 5.0.27 or 5.5.54, I get a directory listing.

I added the welcome files to the 5.x installs as follows:

<!-- Establish the default list of welcome files -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
  </welcome-file-list>

And still I get the directory list.


If I try to access the content using DAVExplorer,  I can read and write 
all of the content on any of the environments.

If I try changing the servlet mapping to:

  <!-- The mapping for the webdav servlet -->
  <servlet-mapping>
    <servlet-name>webdav</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

on 5.x  (to make it similar to that of 4.1.29)

from:

  <!-- The mapping for the webdav servlet -->
  <!-- Using /* as the mapping ensures that jasper, welcome files etc are
       over-ridden and all requests are processed by the webdav servlet.
       This also overcomes a number of issues with some webdav clients
       (including MS Webfolders) that do not respond correctly
 to the
       redirects (302) that result from using a mapping of / -->
  <servlet-mapping>
    <servlet-name>webdav</servlet-name>
    <url-pattern>/*</url-pattern>
  </servlet-mapping>

it displays the page correctly, but then in DAVExplorer, I only see the 
one file.

Is there something special I need to do w/ the default install to have it 
redirect the browser to the Welcome page?  Is there WebDAV servlet under 
5.x substantially different than 4.1.29 that would cause this behavior 
change?

Thanks,

Brian

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

Reply via email to