Re: [Aggregator] Howto remove from persistency

2010-09-26 Thread Olivier.Roger
Nice, I see it's even already implemented. Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Aggregator-Howto-remove-from-persistency-tp2852702p2854867.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel-bean-validator and hibernate-validator for OSGi

2010-09-26 Thread Bengt Rodehav
I'm now using ServiceMix packaging of hibernate validator and the javax.validation api. It works when I only have one bundle using the validation api but when I have two bundles I get the following exception: javax.validation.ValidationException: Unable to find a default provider at > javax.valid

Re: Transacted route with swing client

2010-09-26 Thread Claus Ibsen
Just save the image to the database from your bean if the user accepts it. For that you can use Spring's JdbcTemplate and have it work in the transaction as well. Since you use JMS + JDBC together you may want to use XA for that. Camel in Action chapter 9 tells you how to do that and has examples

Transacted route with swing client

2010-09-26 Thread watcher
I'm having difficultly in visualing this task. Here is what I'm trying to do. I have a contest object that is put onto a queue, this object has an image associated with it. The imageProcessor bean is a swing application. Where the user will modify the object and finally accept/reject the image.