Package com.activequant.servicelayer.soap

Examples of com.activequant.servicelayer.soap.MainService


    public void start() throws Exception {
        JettyHTTPServerEngineFactory eg = new JettyHTTPServerEngineFactory();
        eg.createJettyHTTPServerEngine(this.port, "http");
        // bind the main service.
        Object implementor = new MainService(idf);
        Endpoint ep = Endpoint.publish("http://"+hostName+":" + port + "/aq2o", implementor);
        SOAPBinding soap = (SOAPBinding) ep.getBinding();
        soap.setMTOMEnabled(true);
    }
View Full Code Here

TOP

Related Classes of com.activequant.servicelayer.soap.MainService

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.