<param-value>true</param-value>
<description>Validate config file if set to true</description>
</init-param>
+ <init-param>
+ <param-name>formPattern</param-name>
+ <param-value>/logMeIn</param-value>
+ <description>
+ As an example a login form can define "logMeIn" as it action in place of the standard
+ "j_security_check" which is a special flag user by app servers for container managed security.
+ </description>
+ </init-param>
</filter>
<!-- map all requests to the SecurityFilter, control what it does with configuration settings -->
<param-value>true</param-value>
<description>Validate config file if set to true</description>
</init-param>
+ <init-param>
+ <param-name>formPattern</param-name>
+ <param-value>/logMeIn</param-value>
+ <description>
+ As an example a login form can define "logMeIn" as it action in place of the standard
+ "j_security_check" which is a special flag user by app servers for container managed security.
+ </description>
+ </init-param>
</filter>
<!-- map all requests to the SecurityFilter, control what it does with configuration settings -->
<url-pattern>/*</url-pattern>
</filter-mapping>
+ <servlet>
+ <servlet-name>NoResponseServlet</servlet-name>
+ <description>For Orion only</description>
+ <servlet-class>org.securityfilter.dummy.NoResponseServlet</servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>NoResponseServlet</servlet-name>
+ <url-pattern>/logMeIn</url-pattern>
+ </servlet-mapping>
+
<!-- make the session time-out after one minute -->
<session-config>
<session-timeout>1</session-timeout>