private void openHttp() {
synchronized (this) {
if (null == _httpServer) {
try {
// creates HTTP
_httpServer = new HttpServerStarter(this);
// start HTTP
_httpServer.start();
} catch (Exception e) {
LoggingUtils.getLogger(Application.class).log(
Level.SEVERE,