Package com.dbxml.labrador.http

Examples of com.dbxml.labrador.http.SecureHTTPServer


      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
View Full Code Here

TOP

Related Classes of com.dbxml.labrador.http.SecureHTTPServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.