In Portal 5.1 following code gives me ServletRequest from RenderRequest but is there any way to find the ServletRequest form RenderRequest?
HttpServletRequest hReq = ((org.apache.pluto.core.impl.RenderRequestImpl) request
.getAttribute("javax.portlet.request")).getHttpServletRequest();
RenderRequestWrapper rrw = (RenderRequestWrapper) hReq;
PortalRequestWrapper prw = (PortalRequestWrapper) rrw.getRequest();
ServletRequest sReq = (ServletRequest) prw.getRequest();
I will really appreciate your help.
Thanks,
Rohit
Given that the container drastically changed I am not surprised this does not work anymore
What do you need from the servletrequest?
IBM Certified System Administrator -- WebSphere Portal V6.0, V5.1, V5.0
IBM Certified Solution Developer -- WebSphere Portal V5.1, v6.0
The postings on this site are my own and do not necessarily represent the positions, strategies, or opinions of IBM
Jim