// This cast to object first is to workaround the JDK Bug: http://bugs.sun.com/view_bug.do?bug_id=6548436
final Object jdk6Bug6548436Hack = (Object) server.getConfiguration();
JBossASServerConfig config = (JBossASServerConfig) jdk6Bug6548436Hack;
// Set JBOSS_HOME and properties
config.properties(props).jbossHome(jbossHome);
// Make a shutdown hook
SecurityActions.addShutdownHook(new ShutdownHook(server, loadingCl));
try