Hi, I have a following question regarding camel:cxf component: is it required for producer to use cxf:bean URI?
I expect that producer also works for uri without bean: uri="cxf://anAddress?options" My problem that Camel tries to create a service (act as consumer) for following route: <camelContext xmlns="http://camel.apache.org/schema/spring"> <camel:route> <camel:from uri="timer://myTimer?fixedRate=true&period=2000"/> <camel:to uri="cxf://http://localhost:8088/mockFlightReservationSOAP?defaultOperationName=reserveFlight&dataFormat=MESSAGE&wsdlURL=file:///c:/1/wsdls/FlightReservation.wsdl"/> </camel:route> </camelContext> Console output: "INFO: Creating Service {http://www.eclipse.org/swordfish/samples/FlightReservation/}FlightReservationService from WSDL: file:///c:/1/wsdls/FlightReservation.wsdl " I expect that Camel tries to call external web service instead its creation. Where is my error? Regards, Andrei.