You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2016/03/23 09:35:25 UTC

[jira] [Resolved] (CAMEL-9254) Rest binding can't be used with transacted() in same top-level route definition

     [ https://issues.apache.org/jira/browse/CAMEL-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-9254.
--------------------------------
    Resolution: Cannot Reproduce
      Assignee: Claus Ibsen

> Rest binding can't be used with transacted() in same top-level route definition
> -------------------------------------------------------------------------------
>
>                 Key: CAMEL-9254
>                 URL: https://issues.apache.org/jira/browse/CAMEL-9254
>             Project: Camel
>          Issue Type: Bug
>    Affects Versions: 2.15.3
>            Reporter: Christian Bauer
>            Assignee: Claus Ibsen
>
> Broken:
> {code}
> rest("/foo")
>     .get()
>     .route()
>     .transacted()
>     .bean(getContext().hasService(SomeService.class), "someMethod");
> {code}
> Workaround:
> {code}
> rest("/foo")
>     .get()
>     .route()
>     .to("direct:foo");
> from("direct:foo")
>     .transacted()
>     .bean(getContext().hasService(SomeService.class), "someMethod");
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)