Re: keeping user logged in using j_security_check

2002-11-01 Thread Aniket B Sutaria
Hi Guru Please give details wheather you are using SSL or not. Aniket On Thu, 31 Oct 2002 Guru Mandavia wrote : Hi, I am using j_security_check to authenticate a user using Tomcat 4.1. = Every time a user closes the browser window, he is forced to re-login = even though he logged in just

RE: keeping user logged in using j_security_check

2002-10-31 Thread Ralph Einfeldt
That feature is caused by the livetime of the session cookie. That cookie is just valid for the current browser session. If you close the browser the cookies is deleted. If you disable cookies you can reenter a session, if you use an url that contains a valid session id. -Original

Re: keeping user logged in using j_security_check

2002-10-31 Thread Guru Mandavia
, 2002 4:18 AM Subject: RE: keeping user logged in using j_security_check That feature is caused by the livetime of the session cookie. That cookie is just valid for the current browser session. If you close the browser the cookies is deleted. If you disable cookies you can reenter a session

RE: keeping user logged in using j_security_check

2002-10-31 Thread Ralph Einfeldt
, redirect to an url that contains the original session id from the cookie. -Original Message- From: Guru Mandavia [mailto:gmandavia;smartbrief.com] Sent: Thursday, October 31, 2002 3:21 PM To: Tomcat Users List Subject: Re: keeping user logged in using j_security_check Thanks Ralph

Re: keeping user logged in using j_security_check

2002-10-31 Thread Guru Mandavia
] Sent: Thursday, October 31, 2002 9:52 AM Subject: RE: keeping user logged in using j_security_check There is no cookie, the browser deletes the session cookie when the browser is closed. So tomcat has no chance to assign the session to this request. The only portable solution I see would

RE: keeping user logged in using j_security_check

2002-10-31 Thread Ralph Einfeldt
- From: Guru Mandavia [mailto:gmandavia;smartbrief.com] Sent: Thursday, October 31, 2002 4:41 PM To: Tomcat Users List Subject: Re: keeping user logged in using j_security_check Ralph, One more. Is there way to run the filter prior to j_security? or are you suggesting

RE: keeping user logged in using j_security_check

2002-10-31 Thread Cox, Charlie
[mailto:gmandavia;smartbrief.com] Sent: Thursday, October 31, 2002 10:41 AM To: Tomcat Users List Subject: Re: keeping user logged in using j_security_check Ralph, One more. Is there way to run the filter prior to j_security? or are you suggesting to completely get rid of j_security

Re: keeping user logged in using j_security_check

2002-10-31 Thread Craig R. McClanahan
On Thu, 31 Oct 2002, Guru Mandavia wrote: Date: Thu, 31 Oct 2002 09:21:18 -0500 From: Guru Mandavia [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: keeping user logged in using j_security_check Thanks Ralph. But can't