You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/09/12 23:48:53 UTC

svn commit: r442723 - /incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml

Author: agilliland
Date: Tue Sep 12 14:48:53 2006
New Revision: 442723

URL: http://svn.apache.org/viewvc?view=rev&rev=442723
Log:
PersistenceSessionFilter should only be applied to REQUEST scope, otherwise it can close connections if the request is forwared at some point.

RequestMappingFilter and InitFilter should have 'dispatcher' elements.


Modified:
    incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml

Modified: incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml?view=diff&rev=442723&r1=442722&r2=442723
==============================================================================
--- incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml (original)
+++ incubator/roller/branches/roller_3.0/metadata/xdoclet/filter-mappings.xml Tue Sep 12 14:48:53 2006
@@ -53,19 +53,20 @@
     <filter-name>PersistenceSessionFilter</filter-name>
     <url-pattern>/*</url-pattern>
     <dispatcher>REQUEST</dispatcher>
-    <dispatcher>FORWARD</dispatcher>
 </filter-mapping>
 
 <!-- Init filter.  performs some initialization on first request -->
 <filter-mapping>
     <filter-name>InitFilter</filter-name>
     <url-pattern>/*</url-pattern>
+    <dispatcher>REQUEST</dispatcher>
 </filter-mapping>
 
 <!-- Request mapping.  this is what allows the urls to work -->
 <filter-mapping>
     <filter-name>RequestMappingFilter</filter-name>
     <url-pattern>/*</url-pattern>
+    <dispatcher>REQUEST</dispatcher>
 </filter-mapping>