Package com.google.opengse

Examples of com.google.opengse.ServletEngineFactory


        URLClassLoader urlcl = (URLClassLoader) cl;
        urlcl = new URLClassLoader(classpathToUrls(classpath), urlcl);
        Thread.currentThread().setContextClassLoader(urlcl);
      }
    }
    ServletEngineFactory engineFactory
        = JNDIMain.lookup(ServletEngineFactory.class);
    ServletEngine engine = engineFactory.createServletEngine(
                webapps, new ServletEngineConfigurationImpl(props));
    webapps.startAll();
    engine.run();
  }
View Full Code Here


   * order to get 50 chunks of size 100 bytes sent.
   */
  public static void main(String[] args) throws Exception {
    ServletEngineConfiguration config =
        ServletEngineConfigurationImpl.create(8080, 5);
    ServletEngineFactory engineFactory
        = JNDIMain.lookup(ServletEngineFactory.class);
    ServletEngine engine = engineFactory.createServletEngine(new ByteSpewer(), config);
    engine.run();
  }
View Full Code Here

// uncomment the following line if you want to be able to swap in different engines easily
//    ServletEngineFactory engineFactory = JNDIMain.lookup(ServletEngineFactory.class);

    // we'll hard-code the factory implementation now, for the sake of Simon Stewart
    // who's brother was killed by JNDIMain and he's never forgiven that class
    ServletEngineFactory engineFactory = new ServletEngineFactoryImpl();
    int port = 8080;
    int maxThreads = 5;
    ServletEngineConfiguration config = ServletEngineConfigurationImpl.create(port, maxThreads);
    ServletEngine engine = engineFactory.createServletEngine(helloWorld, config);
    engine.run();
  }
View Full Code Here

TOP

Related Classes of com.google.opengse.ServletEngineFactory

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.