Package org.jwebsocket.config.xml

Examples of org.jwebsocket.config.xml.ServerConfig


    mEngine = new TCPEngine(lEngineConfig);

    // if engine could be instantiated properly...
    if (mEngine != null) {
      // initialize the server
      ServerConfiguration lServerConfig = new ServerConfig(
          "ts0", // id
          "org.jwebsocket.server.TokenServer", // name
          "-" // jar, needs to be in classpath, i.e. embedded in .jar'/manifest
          );
      mServer = new TokenServer(lServerConfig);
View Full Code Here

TOP

Related Classes of org.jwebsocket.config.xml.ServerConfig

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.