Package org.switchyard.component.http

Examples of org.switchyard.component.http.HttpGatewayServlet


    }

    @Override
    public Endpoint publish(ServiceDomain domain, String context, InboundHandler handler) throws Exception {
        String alias = "/" + context;
        HttpGatewayServlet servlet = new HttpGatewayServlet();
        servlet.setHandler(handler);
        servlet.setClassLoader(Classes.getTCCL());
        _httpService.registerServlet(alias, servlet, null, null);
        return new OsgiHttpEndpoint(_httpService, alias);
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.http.HttpGatewayServlet

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.