I am using Resin 3.1.8 and Spring security 2.0.4. I have the below filter defined in the web.xml. I have tried it alone and with the RequestHeaderPreAuthenticatedProcessingFilter.
I am using spring mvc, webflow and tiles.
when i have the filter mapped, i can load my first page but if i click anywhere it gives me a 404 error for the template jsp in my tiles definition. when I remove the filter mapping, i can get to everything, but the security is disabled of course. i have tried about every combination i can think of of dispatchers/no dispatchers, extra filters defined in the context/no filters, various url patterns, etc. but to no avail. has anyone else had this problem? it works fine on tomcat6...is there a bug in the delegatingfilter on resin?
Code:<filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> </filter> <filter-mapping> <filter-name>springSecurityFilterChain</filter-name> <url-pattern>/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> <dispatcher>INCLUDE</dispatcher> <dispatcher>ERROR</dispatcher> </filter-mapping>


