Re: Request bean is lost

2004-07-06 Thread Rick Reumann
[EMAIL PROTECTED] wrote: I have an action Page.do that gets 3 lists from a database. It then places the lists inside a bean which is set in the request. The Page.jsp iterates thru the bean to display the data. The form is posted to the PageSubmit.do. But before the PageForm.validate() is executed.

RE: Request bean is lost

2004-07-06 Thread Robert Taylor
[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 4:04 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > My lists are specific to each user based on security attributes obtained > from the database. > Therefore, the application scope soluti

RE: Request bean is lost

2004-07-06 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 1:45 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > :) > > I was just contemplating while browsing the code... >

RE: Request bean is lost

2004-07-06 Thread gdeschen
ge.do explicitly." robert > -Original Message- > From: Robert Taylor [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 4:37 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > Yes, it will write over any input values... > >

RE: Request bean is lost

2004-07-06 Thread Robert Taylor
Robert Taylor [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 4:37 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > Yes, it will write over any input values... > > In this case, you might want to consider populating > the lists in the

RE: Request bean is lost

2004-07-06 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 1:32 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > Exactly. > > My Page.do has as a parameter the jsp page along with i

RE: Request bean is lost

2004-07-06 Thread gdeschen
t; <[EMAIL PROTECTED]> 06/07/2004 04:28 PM Please respond to "Struts Users Mailing List" To: "Struts Users Mailing List" <[EMAIL PROTECTED]> cc: Subject:RE: Request bean is lost Classification: > -Original Message-

RE: Request bean is lost

2004-07-06 Thread Robert Taylor
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 4:23 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > Umh... > Let me try to express myself more clearly! > > Page.do > - > My Page.do obtains

RE: Request bean is lost

2004-07-06 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 1:23 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > Umh... > Let me try to express myself more clearly! > > Pag

RE: Request bean is lost

2004-07-06 Thread gdeschen
t; <[EMAIL PROTECTED]> 06/07/2004 04:16 PM Please respond to "Struts Users Mailing List" To: "Struts Users Mailing List" <[EMAIL PROTECTED]> cc: Subject:RE: Request bean is lost Classification: > -Origina

RE: Request bean is lost

2004-07-06 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 1:04 PM > To: Struts Users Mailing List > Subject: RE: Request bean is lost > > > My lists are specific to each user based on security > attributes ob

RE: Request bean is lost

2004-07-06 Thread gdeschen
;[EMAIL PROTECTED]> cc: Subject:RE: Request bean is lost Classification: One solution is to point the input attribute value of the PageSubmit.do action mapping to the Page.do action mapping thus re-retrieving the lists before displaying the page. An alternative soluti

RE: Request bean is lost

2004-07-06 Thread Robert Taylor
the page is displayed. robert > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 06, 2004 1:39 PM > To: [EMAIL PROTECTED] > Subject: Request bean is lost > > > Greetings, > > I have an action Page.do that gets

Re: Request bean is lost

2004-07-06 Thread Bill Siggelkow
Try specifying input="/Page.do" instead of input="/Page.jsp" [EMAIL PROTECTED] wrote: Greetings, I have an action Page.do that gets 3 lists from a database. It then places the lists inside a bean which is set in the request. The Page.jsp iterates thru the bean to display the data. The form is p

Request bean is lost

2004-07-06 Thread gdeschen
Greetings, I have an action Page.do that gets 3 lists from a database. It then places the lists inside a bean which is set in the request. The Page.jsp iterates thru the bean to display the data. The form is posted to the PageSubmit.do. But before the PageForm.validate() is executed. Assume that