masonjm 2004/08/18 14:09:27
Modified: src/conf/webapp web.xml
Added: src/webdav/server/org/apache/slide/webdav/filter
NoCacheFilter.java
Log:
Workaround for SSL bug in IE (merge from 2.1 Release Branch)
Revision Changes Path
1.2 +98 -0
jakarta-slide/src/webdav/server/org/apache/slide/webdav/filter/NoCacheFilter.java
1.32 +18 -0 jakarta-slide/src/conf/webapp/web.xml
Index: web.xml
===================================================================
RCS file: /home/cvs/jakarta-slide/src/conf/webapp/web.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- web.xml 10 Aug 2004 21:11:42 -0000 1.31
+++ web.xml 18 Aug 2004 21:09:27 -0000 1.32
@@ -44,10 +44,28 @@
</init-param>
-->
</filter>
+ <!-- If you're operating Slide with an SSL connection and with authentication
enabled
+ and you notice that Internet Explorer is unable to open some file types
you may
+ want to uncomment the following filter and its associated filter-mapping.
See the
+ javadoc for the NoCacheFilter class for a description of the problem and
discussion
+ of the ramifications. -->
+ <!--
+ <filter>
+ <filter-name>nocache</filter-name>
+ <filter-class>org.apache.slide.webdav.filter.NoCacheFilter</filter-class>
+ </filter>
+ -->
+
<filter-mapping>
<filter-name>webdavlog</filter-name>
<servlet-name>webdav</servlet-name>
</filter-mapping>
+ <!--
+ <filter-mapping>
+ <filter-name>nocache</filter-name>
+ <servlet-name>webdav</servlet-name>
+ </filter-mapping>
+ -->
<!-- Definition and configuration of Slide's WebDAV servlet. -->
<servlet>
<servlet-name>webdav</servlet-name>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]