Re: Request losing data after container security check

2002-12-06 Thread Michael Lee
PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 05, 2002 11:34 AM Subject: Re: Request losing data after container security check Your authentication filter could do this: 1. Is user logged in, yes forward to resource, no go to 2. 2. Forward to login page with the url the user wants

RE: Request losing data after container security check

2002-12-06 Thread Edgar Dollin
the CMS specification changed. Edgar -Original Message- From: Michael Lee [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 10:19 AM To: 'Struts Users Mailing List' Subject: Re: Request losing data after container security check Hey david, thanks again! I appreciate all your input

Re: Request losing data after container security check

2002-12-06 Thread Michael Lee
:( Thanks. - Original Message - From: Edgar Dollin [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, December 06, 2002 10:47 AM Subject: RE: Request losing data after container security check This is the way CMS works, there is actually an interim

Re: Request losing data after container security check

2002-12-05 Thread Michael Lee
with a login before it shows the results. thanks, Mike - Original Message - From: edgar [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, December 04, 2002 7:22 PM Subject: RE: Request losing data after container security check If you care enough about

Re: Request losing data after container security check

2002-12-05 Thread David Graham
: Request losing data after container security check Date: Thu, 5 Dec 2002 10:59:36 -0500 Its an http request. It should't matter if the session times out or not. a.jsp is posting data to a.do through an http request. If we have container managed security it should just forward the data. When

RE: Request losing data after container security check

2002-12-05 Thread edgar
with a login before it shows the results. thanks, Mike - Original Message - From: edgar [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, December 04, 2002 7:22 PM Subject: RE: Request losing data after container security check If you care enough about

Request losing data after container security check

2002-12-04 Thread Michael Lee
I have a screen a.jsp that calls a.do which then forwards to b.jsp I have a form called AForm.java. I have a field called email in AForm.java. In a.jsp a user can set email, call a.do and then forward to b.jsp which does a bean:write name=aForm property=email/. This works just fine and outputs

Re: Request losing data after container security check

2002-12-04 Thread David Graham
Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Request losing data after container security check Date: Wed, 4 Dec 2002 14:27:16 -0500 I have a screen a.jsp that calls a.do which then forwards to b.jsp I have a form called AForm.java. I have a field

Re: Request losing data after container security check

2002-12-04 Thread Michael Lee
: Wednesday, December 04, 2002 3:03 PM Subject: Re: Request losing data after container security check If the session times out then you probably want the user to go back to the start page anyways. Request data is only stored by the container long enough to complete a request for one page so it won't

Re: Request losing data after container security check

2002-12-04 Thread David Graham
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Request losing data after container security check Date: Wed, 4 Dec 2002 15:48:15 -0500 ?This doesnt sound right. Its just an http request. It shouldn't lose anything except session data. The container should route the http request

Re: Request losing data after container security check

2002-12-04 Thread Michael Lee
has to log in again thanks, Mike - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 04, 2002 4:09 PM Subject: Re: Request losing data after container security check The session only times out if it's idle; it won't timeout in mid

Re: Request losing data after container security check

2002-12-04 Thread David Graham
think) entering 0 disables it on some containers. David From: Michael Lee [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Request losing data after container security check Date: Wed, 4 Dec 2002 16:50:40

RE: Request losing data after container security check

2002-12-04 Thread edgar
Graham [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 4:59 PM To: '[EMAIL PROTECTED]' Subject: Re: Request losing data after container security check That's the way session time outs are supposed to work. This is a security feature when people leave in the middle of something