String webApplicationPath = System.getProperty("qman.war");
File rootFolderPath = (webApplicationPath != null) ? new File(webApplicationPath) : new File(".");
webapp.setWar(rootFolderPath.toURI().toURL().toExternalForm());
webapp.addLifeCycleListener(_lifecycleListener);
_server.setHandler(webapp);
_server.start();
System.setProperty(Names.ADAPTER_PORT_PROPERTY_NAME,String.valueOf( _connector.getLocalPort()));
_server.join();