jsf - get HttpServletResponse from liferay portal -


I am trying to get the HHPreserve response from the Life Portal. I am also working with icefaces.

  PortletResponse response1 = (PortletResponse) FacesContext.getCurrentInstance (). GetExternalContext (). GetResponse (); HttpServletResponse response = (HttpServletResponse) response1;  

I get the following exception:

  Reason by: java.lang.ClassCastException: com.liferay.portlet.RenderResponseImpl not inserted on javax.servlet .http.HttpServletResponse  

Try PortalUtil.getHttpServletResponse (portletResponse)


Comments