server.registerMBean(test, invocationHandlerTestName);
InvocationHandlerTestMBean proxy = (InvocationHandlerTestMBean) MBeanServerInvocationHandler.newProxyInstance(
server, invocationHandlerTestName, InvocationHandlerTestMBean.class, false);
Integer parameter = new Integer(20);
assertEquals(parameter, proxy.invokeMixedParameters("parameter", 10, parameter));
}
public void testNotificationEmitterAdd()
throws Exception
{