You can get JMX information at
http://java.sun.com/j2se/1.5.0/docs/guide/jmx/.
To get you started:
Context ctx = new InitialContext();
| MBeanServerConnection mconn =
(MBeanServerConnection)ctx.lookup("jmx/invoker/RMIAdaptor");
| ObjectName name = new ObjectName("jboss.system:type=Server");
| String version = (String)mconn.getAttribute(name, "Version");
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089489#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...