Apache Camel: RouteBuilder with CxfEndpoint
问题 Hello! I'm trying to implement a Camel route with Java DSL and RouteBuilder. I want to send from a timer endpoint to a cxf endpoint. Code: public class MyRoute extends RouteBuilder { @Override public void configure() { CamelContext camelContext = getContext(); CxfEndpoint cxfEndpoint = new CxfEndpoint(); cxfEndpoint.setAddress("http://localhost:8088/interface"); cxfEndpoint.setWsdlURL("wsdl/contract.wsdl"); cxfEndpoint.setCamelContext(camelContext); cxfEndpoint.setDataFormat(DataFormat