Unfortunately, if you redirect to another web application on the same server, a different session is created (at least on my Weblogic server).
Turns out I didn't need to do a redirect. The request dispatcher will do the trick if I call RequestDispatcher.getContext() first. Thanks for the help! Elena -----Original Message----- From: Mark Woon [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 1:02 PM To: Struts Users Mailing List Subject: Re: Adding/Modifying parameters in the Request object Elena Yee wrote: > I'm also running into a similiar problem, but need to add parameters with > large chunks of data in a redirect call. Is there another way to do this > besides adding it in the url (which doesn't work because of the data size) ? If you need to pass more data that can fit in the request string, and you can't do a POST, and you're redirecting to a page within your system, you can just stick the data in the session and pass the key to use to retrieve the data from the session. -Mark -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>