Foros de discusión

httpservletrequest in icefaces portlet

Jigar N Gajjar, modificado hace 13 años.

httpservletrequest in icefaces portlet

Junior Member Mensajes: 71 Fecha de incorporación: 25/12/09 Mensajes recientes
Hi,
i want to get httpservletrequest from the icefaces portlet, i am using

FacesContext fc = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) fc.getExternalContext().getRequest();

but it is giving classcastexcpetion as it is not able to cast in httpservletrequest


Thanks
Jigar Gajjar
thumbnail
Jagat Pandya, modificado hace 11 años.

RE: httpservletrequest in icefaces portlet

New Member Mensajes: 7 Fecha de incorporación: 22/11/10 Mensajes recientes
HttpServletRequest httpRequest = (HttpServletRequest) (FacesContext
.getCurrentInstance().getExternalContext().getRequestMap()
.get("com.liferay.portal.kernel.servlet.PortletServletRequest"));
thumbnail
David H Nebinger, modificado hace 11 años.

RE: httpservletrequest in icefaces portlet

Liferay Legend Mensajes: 14915 Fecha de incorporación: 2/09/06 Mensajes recientes
Jagat Pandya:
HttpServletRequest httpRequest = (HttpServletRequest) (FacesContext
.getCurrentInstance().getExternalContext().getRequestMap()
.get("com.liferay.portal.kernel.servlet.PortletServletRequest"));



Wrong wrong wrong.

First, the OP's code fails because:

FacesContext fc = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) fc.getExternalContext().getRequest();


The request instance is a PortletRequest, not an HttpServletRequest. Cast it to a PortletRequest and you're fine.

Second, if you need the original HttpServletRequest (which I highly doubt because no one in the portlet world typically needs this request), you use the com.liferay.portal.util.PortalUtil.getHttpServletRequest(PortletRequest) to access it.

Do not attempt Jagat's 'back door' access because it may break in the future, where the API will be maintained.
thumbnail
Neil Griffin, modificado hace 11 años.

moved thread to Liferay Faces forum

Liferay Legend Mensajes: 2655 Fecha de incorporación: 27/07/05 Mensajes recientes
moved thread to Liferay Faces forum