On 02/13/2011 12:33 PM, Francesco Marchioni wrote:
Dear JBoss developers,
just wondering if JMX support will be changed in the release 7 of the
application server.
I've tried running a basic JMX local (web) client:
Calculator cal = null;
MBeanServer server = MBeanServerLocator.locate();
cal = (CalculateInterest) MBeanProxyExt.create(
CalculateInterest.class,"sampleJMX:service=calculateInterest",server);
However the MBeanProxyExt class cannot be found by the javac compiler.
Do you know if earlier JMX based applications will be compatible with
the AS 7 release ?
That particular class is not in the AS7 code base; however since Java
1.6 JMX provides the following API for creating proxies:
http://download.oracle.com/javase/6/docs/api/index.html?javax/management/...
--
- DML