Hi Claus,

Sorry about the delayed response....

I tried, adding "{Exchange it -> .....}" but didn't worked.....

    .process ({ Exchange it -> println "in processor: ${it.in.body}"
                it.out.body = it.in.body.toUpperCase()
              } )

following works...

     .process ({ Exchange it -> println "in processor: ${it.in.body}"
                 it.out.body = it.in.body.toUpperCase()
               } as org.apache.camel.Processor)



any suggestions......

thanks,
Vinay





--
View this message in context: 
http://camel.465427.n5.nabble.com/camel-error-with-simple-program-with-camel-core-2-11-1-jar-tp5735829p5735990.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to