From 1ff12c6ebc9e3e88cb8560de41f2168cda3321a4 Mon Sep 17 00:00:00 2001 From: maxcooper Date: Mon, 14 Jul 2003 11:43:52 +0000 Subject: [PATCH] added BASIC webapp to build --- build-webapps.xml | 31 +++++++++++++++++++--- web/basic/WEB-INF/web.xml | 66 +++++++++++++++++++++++++++++++++++++++++++++++ web/basic/menu.jsp | 7 +++++ 3 files changed, 101 insertions(+), 3 deletions(-) create mode 100644 web/basic/WEB-INF/web.xml create mode 100644 web/basic/menu.jsp diff --git a/build-webapps.xml b/build-webapps.xml index d8cabe3..24fd574 100644 --- a/build-webapps.xml +++ b/build-webapps.xml @@ -1,9 +1,9 @@ + + + + + + + + + + + + + @@ -82,6 +95,9 @@ $Date: 2003/06/09 11:27:47 $ + + + @@ -95,6 +111,9 @@ $Date: 2003/06/09 11:27:47 $ + + + @@ -108,6 +127,9 @@ $Date: 2003/06/09 11:27:47 $ + + + @@ -121,6 +143,9 @@ $Date: 2003/06/09 11:27:47 $ + + + diff --git a/web/basic/WEB-INF/web.xml b/web/basic/WEB-INF/web.xml new file mode 100644 index 0000000..2b55a27 --- /dev/null +++ b/web/basic/WEB-INF/web.xml @@ -0,0 +1,66 @@ + + + + + + + SecurityFilter Example Application + + + Security Filter + org.securityfilter.filter.SecurityFilter + + config + /WEB-INF/securityfilter-config.xml + Configuration file location (this is the default value) + + + validate + true + Validate config file if set to true + + + loginSubmitPattern + /login + + As an example a login form can define "login" as it action in place of the standard + "j_security_check" which is a special flag user by app servers for container managed security. + + + + + + + Security Filter + /* + + + + NoResponseServlet + For Orion only + org.securityfilter.servlet.NoResponseServlet + + + + NoResponseServlet + /login + + + + + 1 + + + + index.jsp + + + + + 403 + /error/403.jsp + + + diff --git a/web/basic/menu.jsp b/web/basic/menu.jsp new file mode 100644 index 0000000..50e7111 --- /dev/null +++ b/web/basic/menu.jsp @@ -0,0 +1,7 @@ +

+Navigation Menu: [ +Home +| Secure Page +| Forbidden Secure Page +| Logout +]

-- 2.11.0