On Wed, Nov 4, 2009 at 2:40 PM, mcrive <mcr...@optasportsdata.com> wrote:
>
> I ha following route
>
>
> onException(GenericFileOperationFailedException.class)
>        .process(new DeliveryFailureHandler()).stop();
>
>
> from("test-jms:queue:feed.notificationtest.queue")
>        .process(processor)
>        .recipientList(header("recipientListHeader").tokenize(","));
>
>
> recipientListHeader contains a cvs list of endpoints (FTP)
> how can I detect the endpoint URI causing the exception?
> --

What version are you using? This is important to know.

In 2.1-SNAPSHOT you can get it using a property on the exchange

String uri = exchange.getProperty(Exchange.FAILURE_ENDPOINT, String.class);



> View this message in context: 
> http://old.nabble.com/Error-handling-with-recipientList-tp26196454p26196454.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Reply via email to