Package com.jointhegrid.ironcount.httpserver

Examples of com.jointhegrid.ironcount.httpserver.ICHTTPServer


    w.topic = topic;
    w.zkConnect = "localhost:8888";
    w.classloaderUrls = new ArrayList<URL>();
    w.classloaderUrls.add( new URL("http://localhost:8766/") );

    ICHTTPServer serv = new ICHTTPServer();
    serv.docBase="/home/edward/ironcount/src/test/resources/urlload";
    serv.startServer();

    Properties p = System.getProperties();
    p.put(WorkloadManager.ZK_SERVER_LIST, "localhost:8888");
    WorkloadManager m = new WorkloadManager(p);
    m.init();
View Full Code Here

TOP

Related Classes of com.jointhegrid.ironcount.httpserver.ICHTTPServer

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.