Camel.trunk.notest - Build # 2038 - Failure

2013-11-09 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.trunk.notest (build #2038) Status: Failure Check console output at https://builds.apache.org/job/Camel.trunk.notest/2038/ to view the results.

Re: MongoDB exchange Out Body is null, using Apache Camel

2013-11-09 Thread Raul Kripalani
If you're using Camel >= 2.10.3 or 2.11, enable the writeResultAsHeader endpoint option. In the future, please use the users@ forum for such queries. And please remember to always indicate what version of Camel you're running on. Regards, *Raúl Kripalani* Apache Camel PMC Member & Committer | En

Re: Upgrading to Lucene 4.5.1

2013-11-09 Thread Babak Vahdat
Ah actually I should not back port that commit at all as it would be an elasticsearch upgrade: 0.19.10_1 => 0.90.5_1 On the 2.12.x patch branch of us which would be wrong to do. Babak Babak Vahdat wrote > Hi > > Is there any specific reason why we should wait upgrading to Lucene 4.5.1 >

Upgrading to Lucene 4.5.1

2013-11-09 Thread Babak Vahdat
Hi Is there any specific reason why we should wait upgrading to Lucene 4.5.1 https://github.com/apache/camel/blob/master/parent/pom.xml#L255 The matching SMX bundle version 4.5.1_1 would be in central as well. Other than that I'm currently not able to back port commits to the 2.12.x branch, any

Re: git commit: CAMEL-6948: Releasing a non-singleton producer by ProducerCache should not only stop the producer but also shutdown it as well if it is a ShutdownableService.

2013-11-09 Thread Babak Vahdat
Thanks for the hint but that was exactly the reason why I reopened the ticket to get that done better. Right now running tests of camel-core to make sure everything is fine. Babak Claus Ibsen-2 wrote > Hi > > There is a stopAndShutdownService method on ServiceHelper in the util > package. Its

Re: git commit: CAMEL-6948: Releasing a non-singleton producer by ProducerCache should not only stop the producer but also shutdown it as well if it is a ShutdownableService.

2013-11-09 Thread Claus Ibsen
Hi There is a stopAndShutdownService method on ServiceHelper in the util package. Its maybe nicer to use to than the type cast. Then you can do that in one command. And this is also how we stop/start/shutdown services in a cleaner way. And if you enabled TRACE/DEBUG logging the service helper can

Camel.2.12.x.notest - Build # 65 - Failure

2013-11-09 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.2.12.x.notest (build #65) Status: Failure Check console output at https://builds.apache.org/job/Camel.2.12.x.notest/65/ to view the results.

MongoDB exchange Out Body is null, using Apache Camel

2013-11-09 Thread bipin.sutariya
I am trying to save some data in MongoDB using apache Camel. Following is my code from("direct:saveData") .process(dataSaveRequestProcessor) .streamCaching() .to("mongodb:emailDB?database=myDB&collection=myData&operation=save&writeConcern=safe&writeResultAsHeader=true") .pro