From: dayash Date: Sat, 18 Jan 2003 07:28:03 +0000 (+0000) Subject: a configurable login submit form pattern can be used, X-Git-Tag: rel-2_0-alpha1~133 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=65701a12fa9c6027d17b2c02d13c9c17c071272d;p=securityfilter.git a configurable login submit form pattern can be used, a user can either user /j_security_check or whatever they wish e.g. /logMeIn. --- diff --git a/web/blank/WEB-INF/web.xml b/web/blank/WEB-INF/web.xml index d181163..3ef198f 100644 --- a/web/blank/WEB-INF/web.xml +++ b/web/blank/WEB-INF/web.xml @@ -19,6 +19,14 @@ true Validate config file if set to true + + formPattern + /logMeIn + + 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. + + diff --git a/web/share/WEB-INF/web.xml b/web/share/WEB-INF/web.xml index a094913..286764e 100644 --- a/web/share/WEB-INF/web.xml +++ b/web/share/WEB-INF/web.xml @@ -19,6 +19,14 @@ true Validate config file if set to true + + formPattern + /logMeIn + + 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. + + @@ -27,6 +35,17 @@ /* + + NoResponseServlet + For Orion only + org.securityfilter.dummy.NoResponseServlet + + + + NoResponseServlet + /logMeIn + + 1