Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Did you manage to find a solution? – Maciej Ziarko Oct 17 '12 at 8:03
Nothing. I think we used a workaround in which an ActionRequest is sent, and, if successful, the shown page triggers the download with Javascript. – AdrianRM Oct 23 '12 at 10:05
ResourceRequest is used mostly with ajax. So to refresh the whole portal is not the job of ResourceRequest, 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
OK, but if ResourceRequest is to be used only with Ajax, is there an alternative way to produce a dynamic download from a portlet? --> stackoverflow.com/questions/13862722/… – AdrianRM Dec 13 '12 at 15:10
Can you use the ResourceResponse.createRenderUrl() method and pass in a url that will map to a render method?portlet-container.java.net/apidocs/portlet2/javax/portlet/… – Victor Apr 15 at 3:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.