jsp files fail to be transferred, resulting in a 404 in the access logs. I suspect that this is because of $TOMCAT_HOME/conf/web.xml mapping of jsp. So, they need to be mapped to webdav for the webdav app by adding this to webdav/WEB-INF/web.xml: <!-- mapping to remove jsp mapping so can use webdav w/ jsps --> <servlet-mapping> <servlet-name>webdav</servlet-name> <url-pattern>*.jsp</url-pattern> </servlet-mapping>
I have tested this with the latest webdav servlet and this works for me. If you still experience this problem please be more specific about what "fail to be transferred" means.