Foren

How to redirect from a Render Filter

Jose Camallonga, geändert vor 13 Jahren.

How to redirect from a Render Filter

New Member Beiträge: 2 Beitrittsdatum: 02.06.10 Neueste Beiträge
Hi everybody,

I am doing a filter with a render and an action to check if a user is logged in.

When it's calling and action I can redirect him to the home page if it's not logged in with the method actionResponse.sendRedirect(...) but when it's calling a render I don't know how to do it.

Any ideas? emoticon


Thanks!


Jose
thumbnail
Pilar Hidalgo, geändert vor 11 Jahren.

RE: How to redirect from a Render Filter

New Member Beiträge: 14 Beitrittsdatum: 10.04.12 Neueste Beiträge
Hi, did you solve it?

I have the same problem. I have two portlets, and I passed parameters from portletA to portletB but, when I want to redirect to portletB to see results I dont know how... because the render in the portletA dont have a redirect method
.¿Anyone help me?
thumbnail
Mika Koivisto, geändert vor 11 Jahren.

RE: How to redirect from a Render Filter

Liferay Legend Beiträge: 1519 Beitrittsdatum: 07.08.06 Neueste Beiträge
You can't send redirect from render phase. At the time your portlet is rendered there might already be content committed to the output stream by other portlets that's why the spec doesn't allow it. When action phase is execute it only targets it to one portlet and that's why you can do redirect from there.