RE: servlet filters and authentication

2004-02-27 Thread David Evans
Hi, I checked out SecurityFilter yesterday, after Robert Taylors recommendation, and have looked through a good bit of the source. I'm probably going to use your package once i get this thing closer to its final state. It looks like a great program. I like to write my own lite versions of

Re: servlet filters and authentication

2004-02-26 Thread rick
Forward to logon.do, and have the Action check for four cases: 1. no request parameters, display logon form 2. invalid request parameters, display errors 3. unable to authenticate with valid parameters, display error 4. parameters authenticate, forward to home page Rick DeBay On Thu, 26 Feb 2004

Re: servlet filters and authentication

2004-02-26 Thread David Evans
Thank you. I knew i was overlooking something simple. On Thu, 2004-02-26 at 15:12, [EMAIL PROTECTED] wrote: Forward to logon.do, and have the Action check for four cases: 1. no request parameters, display logon form 2. invalid request parameters, display errors 3. unable to authenticate with

RE: servlet filters and authentication

2004-02-26 Thread Max Cooper
I'm the primary author of the SecurityFilter project, and the filter logic is a bit more complicated than the code that was posted. Even if you decide not to use SecurityFilter, it is probably worth a look at the doFilter() method. Some issues that you will/may have to deal with: 1. Filter

RE: servlet filters and authentication

2004-02-26 Thread Hookom, Jacob
got pretty complex for permissions and this worked extremely well for what we were trying to accomplish. -Jake -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: None To: Struts Users Mailing List Subject: Re: servlet filters and authentication Forward to logon.do

RE: servlet filters and authentication

2004-02-26 Thread Robert Taylor
You may want to see if this supports your requirements: https://sourceforge.net/projects/securityfilter/ robert -Original Message- From: David Evans [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 12:07 PM To: Struts Users Mailing List Subject: servlet filters and