Re: Form based security problem

2002-05-20 Thread Craig R. McClanahan
On Mon, 20 May 2002, Pete Serafin wrote: Date: Mon, 20 May 2002 13:36:05 -0500 From: Pete Serafin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Form based security problem I am implementing the form based

Re: Form based security problem

2002-05-20 Thread Victor Hadianto
On Tue, 21 May 2002 04:36, you wrote: I am implementing the form based security for an application on Tomcat 4.0.3. It mostly works fine except for the small problem on the initial log on, the browser is forwarded to /j_security_check instead of the index page with the following message:

Re: Form based security

2002-05-01 Thread Larry Meadors
Pete, You sound like you are on the same path I am. The last application used a custom model that was written in-house, based on jsp tags and struts action servlets. With the current project, we are using TC to provide the security (via LDAP to a Novell NDS tree). So far, the only

RE: Form based security

2002-04-30 Thread David Cypers
: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: maandag 29 april 2002 22:39 To: Struts Users Mailing List Subject: RE: Form based security I concur! I think container based security is the biggest pain in the #$!. I am writing a (hack) for multiple login pages/auto-login/etc

RE: Form based security

2002-04-30 Thread Jon.Ridgway
]] Sent: 30 April 2002 08:25 To: Struts Users Mailing List Subject: RE: Form based security Hi there, I recently implemented access restrictions (and login) through use of the servlet 2.3 filter API. In that filter, you can write anything you want, so it's also possible to hook up to an existing

RE: Form based security

2002-04-29 Thread Tero P Paananen
Im in the process of re-engineering an application and I am focusing on how to implement the security. The current application uses a combination of security checks within the action classes and jsp custom tags based upon a user session object. After reading more about the form-based

RE: Form based security

2002-04-29 Thread Phase Web and Multimedia
, April 29, 2002 2:26 PM To: Struts Users Mailing List Subject: RE: Form based security Im in the process of re-engineering an application and I am focusing on how to implement the security. The current application uses a combination of security checks within the action classes and jsp custom

Re: Form based security

2002-04-29 Thread @Basebeans.com
Subject: Re: Form based security From: Vic C [EMAIL PROTECTED] === I just had a development meeting here on the topic. Use container security. In (base) action do a getRemoteUser(). Based on it, (and isUserInRole) create a sessionUserBean that has other info I get from DB. Anyway, I will take