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

Patrick Klippel reopened CAMEL-2109:
------------------------------------


The testcase did work fine at my system, but when i change the RouteBuilder to:

    @Override
    protected RouteBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            @Override
            public void configure() throws Exception {
                
                
onException(IllegalArgumentException.class).handled(true).to("log:bar").to("mock:error").end();
                 
                from("activemq:queue:foo?transacted=true").id("myCoolRoute")
                    .transacted()
                    .choice()
                        .when(body().contains("Kabom")).throwException(new 
IllegalArgumentException("Damn"))
                    .otherwise()
                        .to("mock:result")
                    .end();

            }
        };
    }

then the test fails ....

> ID of route is not set when onException is used
> -----------------------------------------------
>
>                 Key: CAMEL-2109
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-2109
>             Project: Apache Camel
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>         Environment: Apache Camel 2.1-SNAPSHOT (build 20091022) , Java 1.6.0, 
>  Linux 
>            Reporter: Patrick Klippel
>            Assignee: Claus Ibsen
>
> When building a route like this:
> {code}
> ....
> public void configure() {
> from("jms:fileIn?transacted=true")
>   .onException(UnmarshalException.class)
>    .handled(true)
>     .bean(FileProcessExceptionBean.class,"handleException")
> .end()
> .id("fileMapping")
> .transacted()
> .process(new FileProcessor())
> .to("jms:fileOut");
> }
> {code}
> the id is not set. When the onException-section is removed, the id is set 
> correctly

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to