Hi,
We are in process of migrating our application form Jboss 5 to Jboss AS 7.
In previous JBoss version we had employed MBeanServerConnection attribut "started" to verify if server is up properly as mentioned below
{code:lang=JAVA}
final MBeanServerConnection server =(MBeanServerConnection) InitialContext.doLookup("jmx/invoker/RMIAdaptor");
success = (Boolean) server.getAttribute(new ObjectName("jboss.system:type=Server"), "Started");
{code}
Is it changed with new AS7 ?
Thanks !
Manoj