Hi to all, I'm trying to customize the NavigationPortlet based on the original code, but without a lot of changes, the JBoss is throwing a PortletException in the init method, which looks thus:
public void init() throws PortletException
{
container = (PortalObjectContainer)getPortletContext().getAttribute("PortalObjectContainer");
portalAuthorizationManagerFactory = (PortalAuthorizationManagerFactory)getPortletContext().getAttribute("PortalAuthorizationManagerFactory");
if (container == null)
{
throw new PortletException("No portal object container");
}
}