Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the J2EEServer MBean using JMX query ?

I've tried something like :

mbsc.queryMBeans(new ObjectName("*:j2eeType=J2EEServer"), null)

but no success ?

Have i done something wrong?

Thank you!

share|improve this question

1 Answer

This will do the magic:

   mbeanServerConnection.queryNames(new ObjectName("*:j2eeType=J2EEServer,*"),null )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.