1 Reply Latest reply on Jun 18, 2008 8:56 AM by viniciuscarvalho

    PortletApplicationRegistryListener

    viniciuscarvalho

      Hello there! I would like to register my own PortletApplicationRegistryListener in order to listen to portlets being deployed inside my portal. I can't find how to register it within the PortletApplicationRegistry. How can I do this?

      Regards

        • 1. Re: PortletApplicationRegistryListener
          viniciuscarvalho

          ok I got it working. Just would like to share for others :

           public void start() throws Exception {
           MBeanServer server = MBeanServerLocator.locateJBoss();
           ObjectName name = new ObjectName("portal:service=WebAppRegistry");
          
           server.invoke(name, "addListener", new Object[]{new JBossPortletApplicationRegistryListener()}, new String[] {"org.jboss.portal.portlet.container.PortletApplicationRegistryListener"});
          
          
           }
          
          


          Now I have notifications from the portlets being deployed. Is there any way of opening their web modules? I need to look for an specific file inside the war.

          Regards