RE: Oracle Stored Proc and Camel...

2019-06-11 Thread Rajib Deb
Thanks a lot, I should have guessed this. -Original Message- From: Zoran Regvart Sent: Tuesday, June 11, 2019 2:01 AM To: users@camel.apache.org Subject: Re: Oracle Stored Proc and Camel... [**EXTERNAL EMAIL**] Hi Rajib, what you're seeing as `{result=Hello World OUT parameter

Re: Oracle Stored Proc and Camel...

2019-06-11 Thread Zoran Regvart
Hi Rajib, what you're seeing as `{result=Hello World OUT parameter}` is the String representation of a Java Map, you can reference values in the map using their keys, i.e. Camel Simple language expression `${body[result]}` should give you the content you need. Take a look at the documentation on

Oracle Stored Proc and Camel...

2019-06-10 Thread Rajib Deb
Hi I am writing a camel route to call a stored procedure and get the return value. I am able to get it but it is coming as below rajib after creatcredit {result=Hello World OUT parameter} However, I need only " Hello World OUT parameter" in the body and not result= concatenated with the