[java-idp-testbed COMMIT] /trunk/src/main/webapp/WEB-INF/web.xml

noreply at shibboleth.net noreply at shibboleth.net
Tue Oct 22 17:03:03 EDT 2013


Author: scantor
Date: Tue Oct 22 17:03:03 2013
New Revision: 27

URL: http://svn.shibboleth.net/view/java-idp-testbed?rev=27&view=rev
Log:
Install cookie filter.

Modified:
    trunk/src/main/webapp/WEB-INF/web.xml

Modified: trunk/src/main/webapp/WEB-INF/web.xml
URL: http://svn.shibboleth.net/view/java-idp-testbed/trunk/src/main/webapp/WEB-INF/web.xml?rev=27&r1=26&r2=27&view=diff
==============================================================================
--- trunk/src/main/webapp/WEB-INF/web.xml (original)
+++ trunk/src/main/webapp/WEB-INF/web.xml Tue Oct 22 17:03:03 2013
@@ -15,9 +15,17 @@
     
     <!-- Filters and filter mappings -->
     <filter>
+        <filter-name>CookieBufferingFilter</filter-name>
+        <filter-class>net.shibboleth.utilities.java.support.net.CookieBufferingFilter</filter-class>
+    </filter>
+    <filter>
         <filter-name>RequestResponseContextFilter</filter-name>
         <filter-class>net.shibboleth.utilities.java.support.net.RequestResponseContextFilter</filter-class>
     </filter>
+    <filter-mapping>
+        <filter-name>CookieBufferingFilter</filter-name>
+        <url-pattern>/*</url-pattern>
+    </filter-mapping>
     <filter-mapping>
         <filter-name>RequestResponseContextFilter</filter-name>
         <url-pattern>/*</url-pattern>



More information about the commits mailing list