Re: print the list of map objects in Spring DSL log

2015-04-10 Thread Claus Ibsen
Try using ' ' around the argument to pass in the string value / On Sat, Apr 11, 2015 at 3:50 AM, chaituu wrote: > how to print the list of map objects in Spring DSL log. > > in java i am able to print the value . > > > LOGGER.info("Employee:"+((Employee)csvList.get(0).get(Employee.class.getNa

Re: Camel feasibility

2015-04-10 Thread samnik60 .
Thanks reji. I like this idea better. Regards, R.monish On Apr 10, 2015 9:58 PM, "Reji Mathews" wrote: > Or else write a camel processor. Receive the file contents into a Buffered > Reader. It has function for line by line read > On 10 Apr 2015 16:50, "samnik60 ." wrote: > > > Hi guys, > > I a

Re: Jsypt password encryption with Bridge property place holder

2015-04-10 Thread govimurugan
Thank you Andy for your response. Sorry for the late response. I was into another issue. I tried as you told, but decryption is not happening properly. I am getting below exception while trying to connect RabbitMQ. but it success with plain text password. Am I doing anything wrong or missin

Reading files

2015-04-10 Thread Bob Rogers
> I want to read a file from the file system and map the contents of the file > to a web service call. I also have a PDF on the file system that needs to > be used as an attachment in the web service call. I am wonder from a best > practices standpoint if this is a good idea. The camel developer

Re: migrating from Camel 2.13.1 to 2.15.1 - suddenly all routes not starting

2015-04-10 Thread SchlauFuchs
I found it, the spring camel context factory was set up with autostart false. Then starting the context manually after application start did not start the routes anymore. Thank you for your help! Kai On Apr 11, 2015 2:18 AM, "Claus Ibsen-2 [via Camel]" < ml-node+s465427n5765602...@n5.nabble.com>

print the list of map objects in Spring DSL log

2015-04-10 Thread chaituu
how to print the list of map objects in Spring DSL log. in java i am able to print the value . LOGGER.info("Employee:"+((Employee)csvList.get(0).get(Employee.class.getName())).getEmployeeId());// in Java the value is coming. //Spring DSL object is coming as null. -- View t