[JBoss-user] [Management, JMX/JBoss] - Re: How to access my MBean from a client application?

2004-09-24 Thread darranl
Have a look at the 'Administrators and Developers Guide' available from the 'Free Doco' link on the right, there is more information on accessing MBeans programmatically. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3849399#3849399 Reply to the post : http

[JBoss-user] [Management, JMX/JBoss] - Re: How to access my MBean from a client application?

2004-09-23 Thread tomerbd
public Object getJMXProperty(String objectNameAsString, String attributeName) ObjectName objectName = null; MBeanServer mBeanServer = null; objectName = new ObjectName(objectNameAsString); mBeanServer = MBeanServerLocator.locateJBoss(); Object object; object = mBeanServer