* Register MBeans
*/
try {
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
ObjectName name = new ObjectName("xBus:mbean=Administrator");
Administrator mbean = new Administrator();
mbs.registerMBean(mbean, name);
} catch (Exception e) {
throw new XException(Constants.LOCATION_INTERN,
Constants.LAYER_ADMIN, Constants.PACKAGE_ADMIN_JMX, "0", e);
}