{ // dispatch only allowed for RenderRequest
String msg = "Can not call dispatch() during a portlet ActionRequest";
throw new IllegalStateException(msg);
}
PortletRequestDispatcher requestDispatcher
= _portletContext.getRequestDispatcher(path); //TODO: figure out why I need named dispatcher
try
{
requestDispatcher.include((RenderRequest)_portletRequest,
(RenderResponse)_portletResponse);
}
catch (PortletException e)
{
if (e.getMessage() != null)