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]
