3 Replies Latest reply on Jul 19, 2004 12:10 PM by anil.saldhana

    JBOSS without EJB

    ben_vbe

      Hi,
      I'm beginner with JBOSS. I would like to use JMX but without EJB or servlet. Is it possible?
      Thanks

        • 1. Re: JBOSS without EJB
          anil.saldhana

          JBoss is services based. You get EJB, Servlets etc as services. You can turn them off if you don't want them.

          When you start JBoss, you can access the jmx console at:
          http://localhost:8080/jmx-console

          The console will give you a good idea as to what services are deployed.

          • 2. Re: JBOSS without EJB
            ben_vbe

            thanks!
            and is it possible to launch JBoss services from an application. Or I must use the run launcher? In this case, how to select which service to turn on or off? using jboss-service.xml?

            • 3. Re: JBOSS without EJB
              anil.saldhana

              You can invoke operations on JBoss services from external clients. Look into the admin guide (page 179) for an example. You will have to use the Detached Invoker framework.

              You can turn on/off services in the jboss-service.xml. But if there are any custom services that are deployed in JBoss via sar files, you will have to remove the sar files from /server/default/deploy directory.

              I suggest reading the JBoss Admin Guide.