MBeanInfo info = server.getMBeanInfo(name);
System.out.println("Tomcat MBean:" + info.getClassName());
getLog().debug("Going to start tomcat ");
//Going to stop the Tomcat Instance
server.invokeOperation(name, "start", null, null);
this.sleepThread(10);
server.invokeOperation(name, "startConnectors", null, null);
}
/**