Re: svn commit: r1296787 - in /camel/trunk/camel-core/src: main/java/org/apache/camel/processor/UnmarshalProcessor.java main/java/org/apache/camel/spi/DataFormat.java test/java/org/apache/camel/proces

2012-03-04 Thread Claus Ibsen
Hi Babak It should be okay for the unmarshal processor to return null, which means the body should be set to null as a result. You have introduced a not null check, which now will cause problems. Also this check will always pass as getBody will lazy create an empty body as its stated in its javad

Re: Welcome Bilgin Ibryam as Apache Camel committer

2012-03-04 Thread Willem
Welcome Bilgin :) Willem -- FuseSource Web: http://www.fusesource.com Blog: http://willemjiang.blogspot.com (English) http://jnn.javaeye.com (Chinese) Twitter: willemjiang Weibo: willemjiang On Mar 2, 2012, at 1:29 AM, Christian Mueller wrote: > Two day

Two questions

2012-03-04 Thread Bilgin Ibryam
Hi all, 1. I'm working on CAMEL-3551 (camel-fop component) and I'm not sure how to find out which bundles to add in platforms/karaf/features/src/main/resources/features.xml. Do I need to add batik, fop and xmlgraphics or only fop bunlde? Can I find out this only from the dependencies? 2. maven-co

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Johan Edstrom
+1 On Mar 4, 2012, at 7:26 AM, Babak Vahdat wrote: > +1 > > Babak > > -- > View this message in context: > http://camel.465427.n5.nabble.com/VOTE-Release-Apache-Camel-2-9-1-tp5528628p5535304.html > Sent from the Camel Development mailing list archive at Nabble.com.

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Willem Jiang
+1 Willem On 3/2/12 1:46 AM, Hadrian Zbarcea wrote: A new patch release candidate apache-camel-2.9.1 is out with approximately 108 issues resolved so far: improvements and bug fixes [1]. Please find the staging repo here: https://repository.apache.org/content/repositories/orgapachecamel-005/

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Ioannis Canellos
Makes sense! +1 -- *Ioannis Canellos* * FuseSource ** Blog: http://iocanel.blogspot.com ** Twitter: iocanel *

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Babak Vahdat
+1 Babak -- View this message in context: http://camel.465427.n5.nabble.com/VOTE-Release-Apache-Camel-2-9-1-tp5528628p5535304.html Sent from the Camel Development mailing list archive at Nabble.com.

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Claus Ibsen
+1 On Thu, Mar 1, 2012 at 6:46 PM, Hadrian Zbarcea wrote: > A new patch release candidate apache-camel-2.9.1 is out with approximately > 108 issues resolved so far: improvements and bug fixes [1]. > > Please find the staging repo here: > https://repository.apache.org/content/repositories/orgapach

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Claus Ibsen
On Sun, Mar 4, 2012 at 3:13 PM, Ioannis Canellos wrote: > Hi, > > Regarding the jclouds feature issue, in a vanilla karaf 2.2.5 the jclouds > issue does properly get installed. > However, in some cases (tuning the jre properties etc) you might have > issues unless of course you install the osgi bu

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Ioannis Canellos
Hi, Regarding the jclouds feature issue, in a vanilla karaf 2.2.5 the jclouds issue does properly get installed. However, in some cases (tuning the jre properties etc) you might have issues unless of course you install the osgi bundles for the packages you mask. An other note is that camel-jclouds

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Christian Müller
Hi Christian! My env: Java version: 1.6.0_29, vendor: Apple Inc. Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home Default locale: en_US, platform encoding: MacRoman OS name: "mac os x", version: "10.7.3", arch: "x86_64", family: "mac" Apache Karaf 2.2.5 I changed "$KARA

Ignore my last two commits...

2012-03-04 Thread Christian Müller
... I was fighting with GIT... Best, Christian

Re: [VOTE] Release Apache Camel 2.9.1

2012-03-04 Thread Christian Schneider
I just tried to test camel 2.9.1 in Karaf 2.2.5 on windows 7. I added the repository url to the org.ops4j.pax.url.mvn.cfg and used the jre.properties.cxf as jre.properties. When I try to do: features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.1/xml/features I get a saxparse exception.

Re: About false-positive Test inside Camel source!

2012-03-04 Thread Babak Vahdat
Hi Christian, Both junit.framework.AssertionFailedError org.junit.ComparisonFailure extend java.lang.AssertionError Now inside Processors by [1] we do some assertEquals() which by it's failure would throw org.junit.ComparisonFailure *however* we used to do: onException(junit.framework.As

Re: Camel features and falling-back to Camel components

2012-03-04 Thread E.Gherardini
Thanks a lot Claus! I will study more the subject, and hopefully will not need to abuse your availability further ;) Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Camel-features-and-falling-back-to-Camel-components-tp5525681p5535112.html Sent from the Camel Developm

Re: About false-positive Test inside Camel source!

2012-03-04 Thread Christian Müller
I "fixed" all countDownLatch.await(timeout, timeUnit) calls and check the return value as assertTrue(countDownLatch.await(timeout, timeUnit)). All tests still pass at this time. I didn't got the point that the onException() definition was not triggered, when we throw an AssertionFailureError or Co