Re: AW: How to called the processor

2013-08-26 Thread pradeep
The below mentioned code snippet works as you expected. CamelContext context = new DefaultCamelContext(); context.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { from("direct:start").process(new

AW: How to called the processor

2013-08-22 Thread jhm
> > *can i able to do as below, if not then how can i acheive it ?* > > from("direct:start").process(new Processor() { > > @Override > public void process(Exchange exchange) > throws Exception { >