JMX Console- clicking buttons

Hi,I have exposed a method using jmx managed bean operations. It works fine when i click the button from jconsole. Is there any way that i can stop multiple clicks, when the method is already running(eg:-disabling the button or by some implementation
[300 byte] By [sreedhargattua] at [2007-11-26 19:50:00]
# 1

No, JConsole does not support this functionality but anyway in my opinion this behavior should be implemented in your MBean's operation instead of relying on the good will of JMX clients not calling that operation from separate threads at the same time. In other words, you should synchronize this operation on the server side and not on the client-side.

Regards,

Luis

lmalventa at 2007-7-9 22:38:58 > top of Java-index,Core,Monitoring & Management...
# 2
Thanks for your reply
sreedhargattua at 2007-7-9 22:38:58 > top of Java-index,Core,Monitoring & Management...