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
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