Thanks for the reply.

My solution that I was thinking of using is storing a key in the users session. Then in the form action get the key, and use it to access a static hash that has "ActionInfo" objects. Do you know what kind of overhead there is for the per-user temp area?

thanks!



Michael Rothrock wrote:

On 2/26/03 2:31 PM, "Ryan Christianson" <[EMAIL PROTECTED]> wrote:



My question is how can I provide extra information for this Action so
that my doPerform method can use this information. I looked into how jsp



It depends on the origin of the extra information. If it's from the form, then you can add the appropriate fields. I use HTTP GET to invoke my actions, and I shove lots of stuff into the query data part of the request.

You can also place information into the users' temp area programmatically.
Objects placed here will be visible to all portlets.  Alternatively, there
are functions that generate portlet-specific variables so you can have a
per-portlet, per-user temp area.

The per-portlet call is PortletSessionState.setAttribute(), and the user
temp call is rundata.getUser().setTemp();

-- Michael


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






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



Reply via email to