my intention is to process a ResourceRequest that serves a resource (A dinamically generated PDF). If something goes wrong generating this file, the whole portal with a failure message in the portlet should be rendered.
Is it possible to forward a ResourceRequest to a request that renders the complete portal? I am also considering a redirect, but I will like to be able to pass some attributes/parameters along.
I think I explained my problem clear enough. Thank you.
ResourceRequestis used mostly with ajax. So to refresh the whole portal is not the job ofResourceRequest, at best you can display a failure message in your portlet through ajax if that is what you want to do. Or else you can return some flag to trigger a refresh on the whole portal through javascript. – Prakash K Dec 12 '12 at 9:31