Package de.chris_soft.nanodoa.web

Examples of de.chris_soft.nanodoa.web.DocumentServer


  private void startDocumentServer() {
    if (Boolean.parseBoolean(AppProperties.getProperty(PROP_KEY_DOCUMENT_SERVER_SHALL_USE))) {
      int port = Integer.parseInt(AppProperties.getProperty(PROP_KEY_DOCUMENT_SERVER_PORT));
      try {
        documentServer = new DocumentServer(archive, port);
      }
      catch (Exception exception) {
        LogUtils.log(exception);
        JOptionPane
            .showMessageDialog(null, "Couldn't start document HTTP server!", "Error!", JOptionPane.ERROR_MESSAGE);
View Full Code Here

TOP

Related Classes of de.chris_soft.nanodoa.web.DocumentServer

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.