I am trying to setup gwt-test-utils with Spring Security. The main problem is that spring security requires the org.springframework.web.filter.DelegatingFilterProxy to be loaded. This is generally done in the web.xml like so:
<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>
</filter-mapping>
Is there any way to accomplish this using gwt-test-utils?
Thanks!
Steve