RE: Losing the page context

2003-03-17 Thread Derek Richardson
The error message mentions bean "element". Perhaps the problem is somewhere else on the page? Do you try to refer to a bean named "element" anywhere? Sounds like you may be doing an iterate somewhere? > -Original Message- > From: Karl Stenerud [mailto:[EMAIL PROTECTED] > Sent: Monday, Ma

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: > > request.setAttribute("contractListForm", outFo