Re: Camel swallows Error

2014-02-12 Thread Rural Hunter
Yes, I'm trying to isolate the test case but it's a bit hard. In most situation I see the good stack trace. 于 2014/2/12 16:17, Willem Jiang 写道: I think you need share us with your test case, it could be more easy for us to dig the issue. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.c

Re: Camel swallows Error

2014-02-12 Thread Willem Jiang
I think you need share us with your test case, it could be more easy for us to dig the issue. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com(http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com(http://jnn.javaeye.com/) (Chinese) Twit

Re: Camel swallows Error

2014-02-11 Thread Rural Hunter
2.12.2 于 2014/2/12 11:31, Willem Jiang 写道: The default value is true, BTW, which version of Camel are you using? -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com(http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com(http://jnn.javaeye.c

Re: Camel swallows Error

2014-02-11 Thread Willem Jiang
The default value is true,  BTW, which version of Camel are you using? -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com(http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com(http://jnn.javaeye.com/) (Chinese) Twitter: willemjiang Weibo

Re: Camel swallows Error

2014-02-11 Thread Rural Hunter
hmm...I didn't set it manually. Is that default to false? 于 2014/2/12 10:21, Willem Jiang 写道: I just checked the code and found an interesting thing. public class DefaultSpringErrorHandler implements ErrorHandler { private final LoggingExceptionHandler handler; private final boolean

Re: Camel swallows Error

2014-02-11 Thread Willem Jiang
I just checked the code and found an interesting thing. public class DefaultSpringErrorHandler implements ErrorHandler {     private final LoggingExceptionHandler handler;     private final boolean logStackTrace;     public DefaultSpringErrorHandler(Class owner, LoggingLevel level, boolean logS

Re: Camel swallows Error

2014-02-11 Thread Rural Hunter
Sorry for late response. I was in vacation. I ran your test and checked the stack trace output and found some difference with the one I got problem. Stacktrace with your test: org.apache.camel.CamelExecutionException: Exception occurred during execution on the exchange: Exchange[Message: Hello

Re: Camel swallows Error

2014-01-29 Thread Rural Hunter
Yes, your test case is working. I will try to find the difference with my case. 于 2014/1/29 17:01, Claus Ibsen 写道: Did some unit tests which cannot reproduce the issue you see. https://github.com/apache/camel/commit/8cd86620d09f9641f4d29c5a131f162fd48ec547

Re: Camel swallows Error

2014-01-29 Thread Claus Ibsen
Did some unit tests which cannot reproduce the issue you see. https://github.com/apache/camel/commit/8cd86620d09f9641f4d29c5a131f162fd48ec547 On Wed, Jan 29, 2014 at 8:21 AM, Rural Hunter wrote: > I didn't keep the log but it's a normal NoClassDefFoundError with clear > stack trace. It indicated

Re: Camel swallows Error

2014-01-29 Thread Rural Hunter
I don't have the log any more. And I think I described the problem clearly. What do you need the log for? 于 2014/1/29 15:54, Charles Moulliard 写道: Can you create a gist link with the full stack trace please ? Otherwise we cannot help you

Re: Camel swallows Error

2014-01-28 Thread Charles Moulliard
Can you create a gist link with the full stack trace please ? Otherwise we cannot help you On Wed, Jan 29, 2014 at 8:21 AM, Rural Hunter wrote: > I didn't keep the log but it's a normal NoClassDefFoundError with clear > stack trace. It indicated the line in my processor which caused the error.

Re: Camel swallows Error

2014-01-28 Thread Rural Hunter
I didn't keep the log but it's a normal NoClassDefFoundError with clear stack trace. It indicated the line in my processor which caused the error. The route is quite simple like this: from(REQUEST_QUEUE).process(processor1).process(processor2).process(processor3).to(COMPLETE_QUEUE) The error occ

Re: Camel swallows Error

2014-01-28 Thread Claus Ibsen
Hi And what does the stacktrace looks like when you use try .. catch? And what does your route look like? On Wed, Jan 29, 2014 at 3:50 AM, Rural Hunter wrote: > Hi, > > I use camel 2.12.2 and created a processor. When I deploy the application I > got vague error messages in log like this: > Stac

Camel swallows Error

2014-01-28 Thread Rural Hunter
Hi, I use camel 2.12.2 and created a processor. When I deploy the application I got vague error messages in log like this: Stacktrace --- org.apache.camel.CamelExe