From d29eb33299a477febc9ad6cee74b93cded0a9d38 Mon Sep 17 00:00:00 2001 From: maxcooper Date: Mon, 12 Aug 2002 02:52:00 +0000 Subject: [PATCH] initial version --- HISTORY | 32 ++++++++++++++++++++++++++++++++ INSTALL | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 HISTORY create mode 100644 INSTALL diff --git a/HISTORY b/HISTORY new file mode 100644 index 0000000..8b8d4bc --- /dev/null +++ b/HISTORY @@ -0,0 +1,32 @@ +$Id: HISTORY,v 1.1 2002/08/12 02:52:00 maxcooper Exp $ +$Revision: 1.1 $ +$Date: 2002/08/12 02:52:00 $ + + + Security Filter v1.0-b2-dev +====================================== +http://securityfilter.sourceforge.net/ + + +This document describes the history of the Security Filter project by lising the +changes made for each release. + + +Changes since last release +========================== +* Added http-method support. Requests will be matched against a combination of a +url-pattern and the http-method elements to determine a match. + +* Fixed bug that would restrict access to resources in a web-resource-collection +for which the security-constraint did not have an auth-constraint. Now you can +access resources with no auth-constraint, or include an empty auth-constraint to +restrict access. + +* Users are now redirected to the loginForm when the authorization sequence is +invoked. Previously, this was a server-side forward. + + +Release: 1.0-b1, 2002-08-08 +=========================== +* Initial release. + diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..d97c2e9 --- /dev/null +++ b/INSTALL @@ -0,0 +1,49 @@ +$Id: INSTALL,v 1.1 2002/08/12 02:52:00 maxcooper Exp $ +$Revision: 1.1 $ +$Date: 2002/08/12 02:52:00 $ + + + Security Filter v1.0-b2-dev +====================================== +http://securityfilter.sourceforge.net/ + + +This document contains notes that have been accumulated on getting the Security +Filter example applications running in a variety of servlet container +environments. Please note that JDK 1.3 and a Servlet 2.3 or later environment is +required to use Security Filter. + + +For most containers, you need only to: + +* Copy the WAR files in your Security Filter < /webapp > directory to your +containers < webapps > directory. + +* In some cases, you may need to restart your container if it is running. + + +Status of various containers: + +* Tomcat 4.0+ Standalone - No additonal steps required. +* WebLogic 7.0+ - No additonal steps required. + +* WebLogic 6.1 - Additional steps provided below. + + +WEBLOGIC 6.1 (service pack 2) +----------------------------- + +* Obtain and unpack the Security Filter binary distribution (this procedure +assumes it was extracted to C:\securityfilter). + +* Add c:\securityfilter\lib\commons-logging.jar to the server CLASSPATH by +editing the server start script. For example, add a line to startWebLogic.cmd +after the set CLASSPATH line: + + set CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar + # add commons-logging.jar to the classpath for securityfiltera applications + set CLASSPATH=%CLASSPATH%;c:\securityfilter\lib\commons-logging.jar + + + + -- 2.11.0