blocking = config.getBooleanAttribute(BLOCKING, false);
secure = config.getBooleanAttribute(SECURE, false);
if ( secure ) {
SecureHTTPServer s = new SecureHTTPServer();
s.setKeyFile(config.getAttribute(KEYFILE));
s.setKeyPass(config.getAttribute(KEYPASS));
s.setTrustFile(config.getAttribute(TRUSTFILE));
s.setTrustPass(config.getAttribute(TRUSTPASS));
s.setClientAuth(config.getBooleanAttribute(CLIENTAUTH));
server = s;
}
else if ( blocking )
server = new StandardHTTPServer();
else