Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
<cxf:cxfEndpoint id="CXFTESBRouteService"
address="/WSRouteService"
serviceClass="com.talend.demo.ws_routeservice.WSRouteService"
wsdlURL="classpath:WEB-INF/WS_TalendESBDemo.wsdl" />
from("cxf:bean:CXFTESBRouteService").to("log:test");
from("cxf:bean:CXFTESBRouteService")
.to("log:test")
.recipientList(simple("direct:${header.operationName}"));
from("direct:myOperation1").whatever-needs-to-be-done-for-myOperation1();
from("direct:myOperation2").whatever-needs-to-be-done-for-myOperation2();