Fórumok

redirect method in liferay 6.1

biswajit sarkar, módosítva 11 év-val korábban

redirect method in liferay 6.1

Regular Member Bejegyzések: 166 Csatlakozás dátuma: 2011.10.17. Legújabb bejegyzések
previously I worked in liferay 6.0.6 environment.
Now I have to convert my development environment in liferay 6.1.

In liferay 6.0.6 i used redirect method to redirect in some other page of my portal.
example ---> FacesContext fc = FacesContext.getCurrentInstance();
ExternalContext ec = fc.getExternalContext();

PortletResponse portletResponse = (PortletResponse)ec.getResponse();
LiferayPortletResponse liferayActionResponse = new LiferayPortletResponse(portletResponse);
liferayActionResponse.sendRedirect(Url);

I want to know , is that redirect method still going to work in liferay 6.1.


please help.
thumbnail
Alexandre FILLATRE, módosítva 11 év-val korábban

RE: redirect method in liferay 6.1

Junior Member Bejegyzések: 80 Csatlakozás dátuma: 2010.12.02. Legújabb bejegyzések
Hi biswajit,

If we're talking about the same method, this is part of the servlet API, not Liferay one. Thus, this should still work.
If the method you're talking about comes from Liferay API, please provide its class.

Regards,
Alexandre FILLATRE
biswajit sarkar, módosítva 11 év-val korábban

RE: redirect method in liferay 6.1

Regular Member Bejegyzések: 166 Csatlakozás dátuma: 2011.10.17. Legújabb bejegyzések
sorry for the sintax it will be---->

FacesContext fc = FacesContext.getCurrentInstance();
ExternalContext ec = fc.getExternalContext();

PortletResponse portletResponse = (PortletResponse)ec.getResponse();
LiferayPortletResponse liferayActionResponse = new LiferayPortletResponse(portletResponse);
liferayActionResponse.sendRedirect(Url);
biswajit sarkar, módosítva 11 év-val korábban

RE: redirect method in liferay 6.1

Regular Member Bejegyzések: 166 Csatlakozás dátuma: 2011.10.17. Legújabb bejegyzések
anyone plz help
thumbnail
Amit Doshi, módosítva 11 év-val korábban

RE: redirect method in liferay 6.1

Liferay Master Bejegyzések: 550 Csatlakozás dátuma: 2010.12.29. Legújabb bejegyzések
Try to use this Link