From: <sco...@jb...> - 2005-08-01 19:14:36
|
Which new admin console? If you have an mbean for every deployment that has a unique jmx attribute, such as type=har, you can query for all such mbeans: | ObjectName query = new ObjectName("*:type=har,*"); | MBeanServer server = ...; | Set matches = server.queryNames(query, null); | Iterator names = matches.iterator(); | while( names.hasNext() ) | { | ObjectName mbean = (ObjectName) names.next(); | } | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3887770#3887770 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3887770 |