3 Replies Latest reply on Jun 30, 2005 10:24 AM by philmcc

    creating an mbean to control your web service

    philmcc

      does anyone know how you link your own mbean class to a jboss web service?

      so you can read attributes etc in the web service from a jmx-console mbean.

        • 1. Re: creating an mbean to control your web service
          thomas.diesler

           


          read attributes etc in the web service from a jmx-console mbean


          Please clarify. Do you want to expose an mbean as service endpoint? I supose not.

          • 2. Re: creating an mbean to control your web service
            philmcc

            Thanks for the quick reply Thomas.

            I?ve got a web-service deployed and I would like to write an MBean with functionality that would allow me to see how many times my web service has been hit, change some strings in the web-service class etc.

            I have successfully deployed the example Hello World Service MBean but how would I write an MBean that was ?tied? to my web-service?

            Is that possible?

            • 3. Re: creating an mbean to control your web service
              philmcc

              I?ve worked out how to do it. Put this code in your service and deploy it.

              Create the MBean you want and deploy it.

              This code assumes the name attribute of the mbean element of the jboss-service.xml file is ?acme.com:service=HelloWorld?


              ArrayList ar = MBeanServerFactory.findMBeanServer(null);
              MBeanServer mbs = (MBeanServer)ar.get(0);
              ObjectName on = new ObjectName("acme.com:service=HelloWorld");
              MBeanInfo mbi = mbs.getMBeanInfo(on);
              System.out.println(mbi.getClassName());


              mbi is the MBeanInfo for you MBean - there you go, accessed from your service!

              All I have to do now is workout how to put a listener on the MBean so the service can see when it has been changed and change its behaviour.