Fórum

How to redirect from a Render Filter

Jose Camallonga, modificado 13 Anos atrás.

How to redirect from a Render Filter

New Member Postagens: 2 Data de Entrada: 02/06/10 Postagens Recentes
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, modificado 11 Anos atrás.

RE: How to redirect from a Render Filter

New Member Postagens: 14 Data de Entrada: 10/04/12 Postagens Recentes
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, modificado 11 Anos atrás.

RE: How to redirect from a Render Filter

Liferay Legend Postagens: 1519 Data de Entrada: 07/08/06 Postagens Recentes
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.