The problem is, I'm looking to get this out during the render phase.
(which is the 2nd trip through the pipeline).
And I want it ONLY if it's the render phase that corresponds to that
action...  The below only works during the action phase through the
pipeline...



------------------------------------------------
Rango Keshavan
ASTS
Internal:   8-721-4289
External:  603-721-4289
Cell:  774-258-0754


-----Original Message-----
From: David Sean Taylor [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 26, 2007 11:56 AM
To: Jetspeed Developers List
Subject: Re: Request paramater on an Render return from an Action
request



On Dec 26, 2007, at 8:36 AM, Keshavan, Rango wrote:

> Hi David, thanks for the answer.
>
> The problem is that I want this parameter to be unique to that
> particular action.  The issue is that the action valve stops  
> processing
> through the pipeline at that point and causes a redirect back through
> the pipeline with a new request.  What I need is to be able to put a
> unique (timestamp, say) parameter during the action and have that read
> when the new render request comes through (though, NOT at the portlet
> level)...
>
>
Added this to the action valve, maybe this will work...

             PortletWindow window = request.getPortalURL 
().getNavigationalState().getPortletWindowOfAction();
             String []values = request.getPortalURL 
().getNavigationalState().getParameterValues(window, "x1");


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

Reply via email to