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 2019/04/30 04:04:00 UTC

[jira] [Assigned] (CAMEL-13468) Exception tag is missing when Camel Java DSL is converted into XML using dumpRouteAsXml() operation

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

Claus Ibsen reassigned CAMEL-13468:
-----------------------------------

    Assignee: Claus Ibsen

> Exception tag is missing when Camel Java DSL is converted into XML using dumpRouteAsXml() operation
> ---------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-13468
>                 URL: https://issues.apache.org/jira/browse/CAMEL-13468
>             Project: Camel
>          Issue Type: Bug
>          Components: came-core
>    Affects Versions: 2.22.4, 3.0.0-M1
>            Reporter: Shailendra Kumar singh
>            Assignee: Claus Ibsen
>            Priority: Minor
>             Fix For: 3.0.0, 3.0.0-M3
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Exception tag is missing when Camel Java DSL is converted into XML using dumpRouteAsXml() operation
> #Java DSL route
> {code:java}
> public void configure() {
> 	onException(Exception.class).log("${exception.stacktrace}").logStackTrace(true)
> 			.handled(true);
> 	from("timer://foo?fixedRate=true&period=10000&repeatCount=101").routeId("test")
> 			.log("Hello World");
> }
> {code}
> #XML converted by dumpRouteAsXml() operation(*<exception>java.lang.Exception</exception>* tag is missing)
> {code:java}
> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
> <route xmlns="http://camel.apache.org/schema/spring" customId="true" id="test">
>     <from uri="timer://foo?fixedRate=true&amp;period=10000&amp;repeatCount=101"/>
>     <onException id="onException1">
>         <redeliveryPolicy logStackTrace="true"/>
>         <log id="log1" message="${exception.stacktrace}"/>
>     </onException>
>     <log id="log2" message="Hello World"/>
> </route>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)