Re: How to called the processor

2013-08-22 Thread abhimukh
on the blog "http://saltnlight5.blogspot.se"; there is an example where route is created as follow from("timer://timer1?period=1000") .process(new Processor() { public void process(Exchange msg) { LOG.info("Processing {}", msg); } }); *can

How to called the processor

2013-08-22 Thread abhimukh
Hi, am novice to Apache camel, I want to write the Standalone Camel class, just to called the processor for this i had written the following class and expect it should print the message on the console but its not working. can somebody help in this, how can i achieve it, and what am missing, the cl