Re: Camel - error handling

2012-06-27 Thread Claus Ibsen
n remember to call super.configure(). > Thanks > Damien > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-error-handling-tp5715132p5715177.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen - Fuse

Re: Camel - error handling

2012-06-27 Thread Christian Müller
lobal exception handling (e.g. onException) with Java DSL, do > i need to define a separate route that contains the onException code so > that > every route in the context will pick it up? > > Thanks > Damien > > -- > View this message in context: > http://camel.46542

Re: Camel - error handling

2012-06-27 Thread dgallagher
/Camel-error-handling-tp5715132p5715177.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel - error handling

2012-06-26 Thread Claus Ibsen
t; global exceptions etc > > From an application standpoint, can people recommend best practices for what > type of exception handling to perform for individual routes > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-error-handling-tp5715132.ht

Re: Camel - error handling

2012-06-26 Thread Ashwin Karpe
Committer & Sr Principal Consultant FUSESource (a Progress Software Corporation subsidiary) http://fusesource.com Blog: http://opensourceknowledge.blogspot.com - -- View this message in context: http://camel.465427.n5.nabble.com/Camel-e

Camel - error handling

2012-06-26 Thread dgallagher
cation standpoint, can people recommend best practices for what type of exception handling to perform for individual routes -- View this message in context: http://camel.465427.n5.nabble.com/Camel-error-handling-tp5715132.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-19 Thread javaxmlsoapdev
Thanks Claus -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714676.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-12 Thread Claus Ibsen
n, Jun 11, 2012 at 3:15 PM, javaxmlsoapdev > wrote: > >> using 2.9.2. Could you let me know if there is an issue with such >> deadLetterChannel setting working with receipientList EIP? >> >> Thanks, >> >> -- >> View this message in context: >> http://camel.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-12 Thread Claus Ibsen
> > Thanks, > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714290.html > Sent from the Camel - Users mailing list archive at Nabble.com. > -- Claus Ibsen

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-11 Thread javaxmlsoapdev
using 2.9.2. Could you let me know if there is an issue with such deadLetterChannel setting working with receipientList EIP? Thanks, -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714290.html Sent

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-09 Thread Claus Ibsen
What version of Camel are you using? On Fri, Jun 8, 2012 at 6:46 PM, javaxmlsoapdev wrote: > Anyone? > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714225.html > Sent from

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-08 Thread javaxmlsoapdev
Anyone? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714225.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-07 Thread javaxmlsoapdev
this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714146.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-07 Thread javaxmlsoapdev
(JndiDestinationResolver.java:111) -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue-tp5714076p5714145.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Error handling throwing exception; not moving to error queue

2012-06-06 Thread javaxmlsoapdev
component I am able to catch this exception. However I need to forward this to an error queue instead of just logging them. Any idea? Thanks, -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Error-handling-throwing-exception-not-moving-to-error-queue

Re: camel Error Handling

2011-08-16 Thread aum.struts
: http://camel.465427.n5.nabble.com/camel-Error-Handling-tp4681829p4705536.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel Error Handling

2011-08-11 Thread Claus Ibsen
on onException() method will be called > and which in turn will pass the things to CSVConverterBean.class, > "validationFailed method. > > So i can i pass the status back to main method? > > -- > View this message in context: > http://camel.465427.n5.nab

Re: camel Error Handling

2011-08-11 Thread aum.struts
d? -- View this message in context: http://camel.465427.n5.nabble.com/camel-Error-Handling-tp4681829p4688705.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel Error Handling

2011-08-10 Thread shekher awasthi
ly happened (say > in > > my case csv was invalid) > > > > Its a bit unclear what you want to do? Do you want the callRoute() > method to return some status of how it went? OK or in case of an > failure, some kind of exception message or what? > > In all cases i

Re: camel Error Handling

2011-08-10 Thread Claus Ibsen
ind of exception message or what? In all cases its just java code, so you can just add some state to the route class, and use that to compute a response to return from the callRoute method. > thanks in advance > Aum > > > > > > > -- > View this message in context: >

camel Error Handling

2011-08-09 Thread aum.struts
ence where i am adding route,configuring it and starting camel context as well stopping it. i am just confused how one can show end user what exactly happened (say in my case csv was invalid) thanks in advance Aum -- View this message in context: http://camel.465427.n5.nabble.com/camel-Error-Handling-tp4681829p4681829.html Sent from the Camel - Users mailing list archive at Nabble.com.