From: <sco...@jb...> - 2006-06-29 14:01:31
|
I'm not following your question then. The MBeanProxyExt is simply used to obtain a typesafe proxy on the jmx bean whose management interface is MainDeployerMBean. The standard jmx equivalent is to use the javax.management.MBeanServerInvocationHandler: | ObjectName mainDeployer = ...; | MBeanServer server = ...; | MainDeployerMBean proxy = (MainDeployerMBean) MBeanServerInvocationHandler.newProxyInstance( | server, mainDeployer, MainDeployerMBean.class, false); | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954379#3954379 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954379 |