Re: Why the "handled" tag can't use in xml.
Thanks.The problem is fix. -- View this message in context: http://camel.465427.n5.nabble.com/Why-the-handled-tag-can-t-use-in-xml-tp5732701p5732729.html Sent from the Camel - Users mailing list archive at Nabble.com.
Why the "handled" tag can't use in xml.
Hi all.The error handler can use in java dsl like this: onException(Throwable.class) .to("file://errors") .process(errorProcessor) .handled(true) .end(); But in xml, I write this, it can't working: java.lang.Throwable true What's the right useage? Tha