I created a filter and its mapping in my applications web.xml. This is
running in Tomcat6. My application is using the Tiles framework.

<filter>
<filter-name>filtername</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFil
terProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>filtername</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>

Instead of passing through the filter once, it calls it for every single
include on the page i.e. every single tile even though I have only request
in my dispatcher property and not include or forward. Any ideas why this is
happening?
-- 
View this message in context: 
http://www.nabble.com/filter-mapping-in-Tomcat6-tp25244035p25244035.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to