Re: errroHandler is not redelivering

2012-01-30 Thread Babak Vahdat
t; yours: >> >> > class="org.apache.activemq.camel.component.*ActiveMQComponent*"> >> >> Is that just as Copy & Paste issue? >> >> Babak >> >> -- >> View this message in context: >> http://camel.465427.n5.nabble.com/errroHandler-is-not-redelivering-tp5438700p5441739.html >> Sent from the Camel - Users mailing list archive at Nabble.com. >>

Re: errroHandler is not redelivering

2012-01-30 Thread atg roxx
ent*"> > > Is that just as Copy & Paste issue? > > Babak > > -- > View this message in context: > http://camel.465427.n5.nabble.com/errroHandler-is-not-redelivering-tp5438700p5441739.html > Sent from the Camel - Users mailing list archive at Nabble.com. >

Re: errroHandler is not redelivering

2012-01-30 Thread Babak Vahdat
-- View this message in context: http://camel.465427.n5.nabble.com/errroHandler-is-not-redelivering-tp5438700p5441739.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: errroHandler is not redelivering

2012-01-30 Thread atg roxx
Any replies ??? I am stuck on this for last couple of days ... any help ?? --cheers, atgroxx On Sun, Jan 29, 2012 at 6:32 PM, atg roxx wrote: > first thanks for replying ... > > Now I am using apache-camel-2.8.3 and > > route configuration is > = > > @Override > public void co

Re: errroHandler is not redelivering

2012-01-29 Thread atg roxx
first thanks for replying ... Now I am using apache-camel-2.8.3 and route configuration is = @Override public void configure() throws Exception { onException(SoapFaultClientException.class).maximumRedeliveries(2).useExponentialBackOff(); errorHandler(deadLetterChannel("

Re: errroHandler is not redelivering

2012-01-29 Thread Claus Ibsen
Hi Can you post a few more details? Such as which Camel version you are using. And post your routes. Also notice that Camel redelivery is happening at the place of the error. Where as redelivery from a JMS broker, starts all over again. That is a difference. On Sat, Jan 28, 2012 at 11:32 PM, a

errroHandler is not redelivering

2012-01-28 Thread atg roxx
Hi, I am new to camel world. I read on the camel site that we can use the below configuration to configure the route. But the following this not taking affect. Is the some other setting which has to done somewhere ?? kindly guide me . errorHandler(deadLetterChannel("jms:queue:dead") .m