Re: Camel-kafka integration issue

2020-03-31 Thread Omar Al-Safi
You can take a look at this example which explains this in good details. Regards, Omar On Tue, Mar 31, 2020 at 2:20 PM Andrea Cosentino wrote: > You need to send something to direct. As it is you're not sending

Re: Camel-kafka integration issue

2020-03-31 Thread Andrea Cosentino
You need to send something to direct. As it is you're not sending messages to your route. Use a timer. Il giorno mar 31 mar 2020 alle ore 14:18 Sanu Sandesh < muralisandes...@gmail.com> ha scritto: > Team, > > I am trying to integrate Camel with Kafka. Written simple application with > camelcont

Fwd: Camel-kafka integration issue

2020-03-31 Thread Sanu Sandesh
Team, I am trying to integrate Camel with Kafka. Written simple application with camelcontext initialized in main() program & added my routebuilder with below code: from("direct:start") .setBody(constant("Message from Camel")) // Message to send .setHeader(KafkaCo