how to access the properties of one action by another action

2008-02-17 Thread Prashant Khanal
Hello all, I am fetching a list of objects in one action and i want to use the same list of objection when i move to another action from that action. How can i do that? Actually i use the list of objects to populate the table of a jsp page and the i want to access the same list of objects in the a

Re: how to access the properties of one action by another action

2008-02-18 Thread Jeromy Evans
Placing the object in the session is the least effort approach. Retrieving the objects again is a sensible approach too. Sometimes sending the object to the client and back again is sensible (encoded in some way in a cookie, hidden input or url param) The scope plugin is intended to simplify th

Re: how to access the properties of one action by another action

2008-02-18 Thread stanlick
Look at the "chain" result type. On Feb 17, 2008 11:31 PM, Prashant Khanal <[EMAIL PROTECTED]> wrote: > Hello all, > > I am fetching a list of objects in one action and i want to use the same > list of objection when i move to another action from that action. How can > i > do that? > Actually i u

Re: how to access the properties of one action by another action

2008-02-18 Thread Laurie Harper
That wont help across seperate requests, though. L. [EMAIL PROTECTED] wrote: Look at the "chain" result type. On Feb 17, 2008 11:31 PM, Prashant Khanal <[EMAIL PROTECTED]> wrote: Hello all, I am fetching a list of objects in one action and i want to use the same list of objection when i mov