What Camel version do you use?

And what kind of component is from("step4") ?

On Thu, Aug 14, 2014 at 2:26 PM, rwijngaa
<[email protected]> wrote:
> Hi,
>
> I noticed the breadcrumbId is null after i use transacted. Is this by
> design?
> See example route below.
>
>         from("step4"))
>                 .routeId("route-step4")
>                 .onCompletion().onCompleteOnly().bean(loggingProcessor,
> LoggingProcessor.AUDIT)
>                 .end()
>                 .onException(IllegalArgumentException.class)
>                 .bean(loggingProcessor, LoggingProcessor.GENERAL_FAILURE)
>                 .to("errorStep")
>                 .end()
>                 // HERE exchange.in.header.breadcrumbId == filled. OK
>                 .transacted("requiredJta")
>                 .to(toEndpoint)
>                 // HERE exchange.in.header.breadcrumbId == null
>                 .process(updateQueryBuilder)
>                 .to(dataSource)
>                 .bean(checkDatabaseUpdate);
>
>
>
> --
> View this message in context: 
> http://camel.465427.n5.nabble.com/BreadcrumbId-is-null-after-using-transacted-tp5755210.html
> Sent from the Camel - Users mailing list archive at Nabble.com.



-- 
Claus Ibsen
-----------------
Red Hat, Inc.
Email: [email protected]
Twitter: davsclaus
Blog: http://davsclaus.com
Author of Camel in Action: http://www.manning.com/ibsen
hawtio: http://hawt.io/
fabric8: http://fabric8.io/

Reply via email to