Re: Sometimes exceptions are not getting handled

2009-02-04 Thread Claus Ibsen
On Wed, Feb 4, 2009 at 1:51 PM, Manish K Bafna manish.ba...@headstrong.com wrote: Hi, I have added onException clause in the route. But sometimes it is not getting called. Can't identify the exact scenario in which this block is not getting executed. Any hints or issues around it. Thanks,

Re: CAMEL 2.0 SNAPSHOT sources jars are not in maven repo

2009-02-04 Thread James Strachan
2009/2/4 Willem Jiang willem.ji...@gmail.com: Hi James, I just checked the script , we need to update the svn co https://svn.apache.org/repos/asf/activemq/camel/trunk camel $LOGDIR/camel-deploy.log to svn co https://svn.apache.org/repos/asf/camel/trunk camel $LOGDIR/camel-deploy.log

Write routing condition in xml config file

2009-02-04 Thread mta38
Hi all, Is someone can say me how to test a header exchange value in a xml config file. For example, if the header TEST exists in my IN message and its value is 10, I want to do the following: route from uri=… choice when

JMS Transactions

2009-02-04 Thread benshort
Hi, I have the following route... from(jms:rts_messages_email?concurrentConsumers=1) .process(new SendingProcessor()) .onException(Exception.class) .handled(true) .maximumRedeliveries(0)

Re: understanding SEDA and Thread processor

2009-02-04 Thread Roman Kalukiewicz
2009/2/3 huntc hu...@mac.com: I think that what you're looking for is something akin to the concurrentConsumers parameter for a JMS endpoint. My recommendation is to raise a JIRA request for an enhancement so that the SEDA endpoint can receive a concurrentConsumers parameter. After all seems

Re: Write routing condition in xml config file

2009-02-04 Thread Claus Ibsen
On Wed, Feb 4, 2009 at 11:39 AM, mta38 mtaraud@orange-ftgroup.com wrote: Hi all, Is someone can say me how to test a header exchange value in a xml config file. For example, if the header TEST exists in my IN message and its value is 10, I want to do the following: route from

Mina consuming endpoint with sync - how to override?

2009-02-04 Thread huntc
Hi there, I have a consuming mina: endpoint with sync=true set on it. In my use case I have some messages coming in that require a response, and some that do not. Unfortunately where I do not want to return a message Camel is still expecting that I should and throws an ExchangeTimedOutException.