Package org.apache.servicemix.camel

Examples of org.apache.servicemix.camel.JbiEndpoint


    public void configure() throws Exception {
        // Set the operation from Camel DSL
        org.apache.camel.Endpoint endpoint = getContext().getEndpoint(toUri);
        if (endpoint instanceof JbiEndpoint) {
            JbiEndpoint jbiEndpoint = (JbiEndpoint) endpoint;
            jbiEndpoint.setOperation("{http://test}echo");
        }

        from("jbi:name:cheese").to(toUri);
    }
View Full Code Here

TOP

Related Classes of org.apache.servicemix.camel.JbiEndpoint

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.