Ah, understood. See the logic in PortletTag.java from the JBoss Portal code base to see
how to access the underlying HttpServletRequest.
Something like the following will get you access to the underlying ServletRequest:
| ServletRequest req = pageContext.getRequest();
| PortletInvocation invocation =
(PortletInvocation)req.getAttribute(ContextDispatcherInterceptor.REQ_ATT_COMPONENT_INVOCATION);
| HttpServletRequest request = invocation.getDispatchedRequest();
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4216345#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...