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.
publ
You already setup a CxfEndpoint to use, so your route should be just like this
from("timer://my-timer?fixedRate=true&period=500") .transform(constant("DummyBody")) .to(myEndpoint);