Re: How to keep a request Attribute available (from first action) after second action is called

2005-12-18 Thread Paul Benedict
Neils,

The only thing in common between request 1 and request 2 is the user session. 
If you want
something to persist between requests, place it in the session; then clean the 
session when
finished.

Paul


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



How to keep a request Attribute available (from first action) after second action is called

2005-12-18 Thread niels
An action (ActionOne with scope=request) is called which
puts a result list on an attribute like:
request.setAttribute("listResult", list);
This result is displayed in a jsp.

After that a second action (ActionTwo) is called
which forward to another jsp. How can I make the "listResult" available in
ActionTwo?


Thanks in advance,
Niels