Re: camel managed redelivery for transacted routes that fail during a JTA transaction.

2013-03-12 Thread ODarwish
Hi , maybe you can start new route on the exception case and retry again , if this help , in the new route you need to start new transaction and marke the old one as rollback , somthing like this xyz true . . . - Othman Darwish ProgressSoft Corp. -- View this message in

Re: SEDA and DIRECT route does not propagate back the exception to the calling route

2013-03-07 Thread ODarwish
the problem fixed by creating no error handler and refernce it in the sub routes ,then the exception back to the calling route - Othman Darwish ProgressSoft Corp. -- View this message in context: http://camel.465427.n5.nabble.com/SEDA-and-DIRECT-route-does-not-propagate-back-the-excep

Re: How to get response from activeMQ when a message is put on queue?

2013-03-07 Thread ODarwish
hi you can add exception handler on route or context scope to send the nac reply , as for ack after sending the jms you can create the ack message and post it to tcp point e.g . from direct {onexception create nak response ,attach it to exchange body to tcp } to jms ceate ack response and

SEAD and DIRECT route does not propagate back the exception to the calling route

2013-03-07 Thread ODarwish
SEAD and DIRECT route does not propagate back the exception to the calling route If I have route1 which has exception handling block defined at route scope , when I call route 2 using seda or direct point and exception generated for any reason inside route 2,this exception does not propagated b

Re: Dynamic route : multiple From point

2013-02-22 Thread ODarwish
Reference to bellow issue im , since i mixed java DSL with spring XML and its work fine ;my route build initiate dynamic number of routes and deliver them to centralized route written in spring DSL https://issues.apache.org/jira/browse/CAMEL-5717 Please advice - Othman Darwish Pr

Dynamic route : multiple From point

2013-02-12 Thread ODarwish
How can I create dynamic route to read messages from multiple sources e.g. multiple ActiveMQ queues , the number of queues depends on customer registered in database each with have own dedicated queue As I know recipient list handle dynamic (calculated ) multiple destination end point ,but wh