RE: Losing the page context

2003-03-17 Thread Derek Richardson
PROTECTED] > Sent: Monday, March 17, 2003 7:44 PM > To: Struts Users Mailing List > Subject: Losing the page context > > > My struts application keeps losing the page context, so I > can't get anything > that was saved into the request scope. > >

Re: Losing the page context

2003-03-17 Thread Aidan Monroe
>From what I know (which is not that much), all items that will be written to the page need to appear within a tag. I've had the exact same error and resolved it by simply moving the "useBean" to be with a valid tag. --- Karl Stenerud <[EMAIL PROTECTED]> wrote: > > is this: > > > > > class="vie

Re: Losing the page context

2003-03-17 Thread Karl Stenerud
> is this: > > class="view.ContractListForm"/> > > > contained within a tag? No, it's at the top of the jsp page. I created it in the previous action like so: ContractsSearchCommand cmd = new ContractsSearchCommand(); // Would do some setting here for criteria cmd.exec

Re: Losing the page context

2003-03-17 Thread Aidan Monroe
is this: contained within a tag? --- Karl Stenerud <[EMAIL PROTECTED]> wrote: > My struts application keeps losing the page context, > so I can't get anything > that was saved into the request scope. > > My action does this: > > reques

Losing the page context

2003-03-17 Thread Karl Stenerud
My struts application keeps losing the page context, so I can't get anything that was saved into the request scope. My action does this: request.setAttribute("contractListForm", outForm); The jsp for the next page does this: But it keeps throwing