MBeanServerConnection mbsc = jmxc.getMBeanServerConnection();
// call the requestShutdown() interface on the server
ObjectName name = new ObjectName(KernelMXBean.MXBEAN_NAME);
KernelMXBean proxy = JMX.newMXBeanProxy(mbsc, name, KernelMXBean.class);
proxy.requestShutdown();
}
}