This is the case despite the following, recommended, web.xml setting which is supposed to deal with bugs in IE:
<servlet-mapping>
<servlet-name>webdav</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>The problem does not occur in the webdav webapp supplied with Tomcat 4.1.12 even though its web.xml contains:
<servlet-mapping>
<servlet-name>webdav</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>ie. the pattern that would evoke the IE bug.
Any insights would be welcome.
