Re: Change Sql Component BLOB datatype to XML for Aggregator serialization

2012-09-23 Thread AlanFoster
Thanks Christian for the links. This will be my 6th patch now however! :) The link for the patch is here : https://issues.apache.org/jira/browse/CAMEL-5643 And the relevant Camel Development post: http://camel.465427.n5.nabble.com/Patch-CAMEL-5643-Allow-users-to-store-body-and-arbitrary-headers-a

Re: Correct use of camelproxy?

2012-09-23 Thread zuff
Hi All, I managed to get the route to work. However, I did this by annotating @Produce(uri="direct:resultProcessor") on the resultProcessor instance variable in the controller class. Is it possible to decouple camel from the code, and just use the camelContext.xml for configuration? Thanks and

Re: Starting route(s) upon completion of another route

2012-09-23 Thread Sam (Stephen Samuel)
The "poll value of startCoreRoutes every x seconds" bit can be done easily with a CountdownLatch. http://docs.oracle.com/javase/1.5.0/docs/api/java/util/concurrent/CountDownLatch.html Have your other routes block on that and then trigger it when your Route A is complete. Obviously do nice things

Re: Starting route(s) upon completion of another route

2012-09-23 Thread Marco Westermann
Hi, you can start and stop routes from other routes. So if A has finished processing it can start the other routes. have a look here: https://camel.apache.org/how-can-i-stop-a-route-from-a-route.html best regards, Marco Am 21.09.2012 18:30, schrieb Edwin: Thanks for your reply Willem, Ap

Re: String replacement via Spring

2012-09-23 Thread Claus Ibsen
Hi I digged into this and have logged a ticket to get this enhanced https://issues.apache.org/jira/browse/CAMEL-5642 On Wed, Sep 19, 2012 at 9:43 PM, gramanero wrote: > Thank you everyone for helping me work through this issue. I finally figured > out how to use groovy to solve for it. > > Thi

Re: Quartz Scheduling to move files

2012-09-23 Thread Claus Ibsen
The route will only be started when the start cron expression trigger. On Thu, Sep 20, 2012 at 7:51 PM, Chandra Kalirasa wrote: > Hi Claus, > I've used the policy that you have mentioned below, I do not see the files > are moved. Am I missing anything in the following code? > Thanks > Chandra >