I have a server written in Java to serve HTTP requests for different clients. I also have some MBeans on this server that are exposed to JMX, from which a monitoring tool can monitor some server resources and help with maintenance.
All the code that checks the system / integration HTTP endpoints is C #. Because of this, I was hoping to try using C # to test my MBeans on top of JMX. Is there such a thing in the library that already exists, or will I have to implement the protocol myself? What other options (with C #) can I have?
source
share