Write the configuration information for this entire Server
out to the server.xml configuration file.
Server server = ServerFactory.getServer();
if (server instanceof StandardServer) {
try {
((StandardServer) server).storeConfig();
} catch (Exception e) {
throw new MBeanException(e, "Error updating conf/server.xml");
}
}