// connector server is bound to
MBeanServerConnection connection = connector.getMBeanServerConnection();
// Call the server side as if it is a local MBeanServer
ObjectName asmName = getObjectName(ManagementContext.class);
Object proxy = MBeanServerInvocationHandler.newProxyInstance(connection, asmName, AdminServiceMBean.class, true);
AdminServiceMBean asm = (AdminServiceMBean) proxy;
LOGGER.info(asm.getBindingComponents().toString());
LOGGER.info(asm.getComponentByName("toto").toString());
}