Re: how to pass object through request parameter

2008-03-05 Thread Arpan Debroy
Thanks Nils.. On Wed, Mar 5, 2008 at 1:13 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]> wrote: > You can store objects as request attributes, which lives as long as > the request. If you need an object to live between requests, use the > session. > > Nils-H > > On Wed, Mar 5, 2008 at 8:24 AM, A

Re: how to pass object through request parameter

2008-03-04 Thread Nils-Helge Garli Hegvik
You can store objects as request attributes, which lives as long as the request. If you need an object to live between requests, use the session. Nils-H On Wed, Mar 5, 2008 at 8:24 AM, Arpan Debroy <[EMAIL PROTECTED]> wrote: > Hi, > > Instead of sending string name and values, I want to send the

how to pass object through request parameter

2008-03-04 Thread Arpan Debroy
Hi, Instead of sending string name and values, I want to send the whole object, which comprises of some fields, from one jsp to another one. I am using struts2. Can anyone tell me if it's possible to pass an object rather than strings through request object. Thanks