Re: Issue with camel in Camel 2.12.0

2013-09-25 Thread deepak_a
http://camel.apache.org/using-propertyplaceholder.html Following section: *Clashing Spring property placeholders with Camels Simple language* in the above link explains how to avoid this problem. Following now works fine * $simple{body}

Re: Issue with camel in Camel 2.12.0

2013-09-25 Thread deepak_a
Hi, Just retried it with Camel 2.9.0 and ${body} and ${body} works fine. Only in Camel 2.12.0 - it assumes that anything under ${} is a property - and throws an exception that property value not found for the Key. Is this a genuine defect or am I using it wrongly? regards D -- Vi

Re: Issue with camel in Camel 2.12.0

2013-09-25 Thread deepak_a
Hi, I have tried ${body} and ${in.body} Still getting the same exception. Looks like Camel is assuming that it to be a property 'key' being passed into the routes.xml. regards D -- View this message in context: http://camel.465427.n5.nabble.com/Issue-with-camel-el-in-Camel-2-12-0-tp5740188p5

Re: Issue with camel in Camel 2.12.0

2013-09-25 Thread Hilderich
Hello! Why don't you use ${body} cheers Hilderich -- View this message in context: http://camel.465427.n5.nabble.com/Issue-with-camel-el-in-Camel-2-12-0-tp5740188p5740190.html Sent from the Camel - Users mailing list archive at Nabble.com.

Issue with camel in Camel 2.12.0

2013-09-25 Thread deepak_a
All, I am migrating from camel 2.9.0 to 2.12.0. One change I had to do was around additional boolean argument added in method resolveProperties of org.apache.camel.component.properties.DefaultPropertiesResolver I am also seeing the use of Expression Language failing in 2.12.0. My Route is as foll