You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Ben Kiefer (JIRA)" <ji...@apache.org> on 2013/06/11 16:10:19 UTC

[jira] [Created] (CAMEL-6448) Incorrect documentation for XML redeliveryPolicyRef in OnException clause

Ben Kiefer created CAMEL-6448:
---------------------------------

             Summary: Incorrect documentation for XML redeliveryPolicyRef in OnException clause
                 Key: CAMEL-6448
                 URL: https://issues.apache.org/jira/browse/CAMEL-6448
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.11.0, 2.10.4, 2.10.3
            Reporter: Ben Kiefer
            Priority: Trivial


The example in the documentation on the onException page (http://camel.apache.org/exception-clause.html) shows incorrect configuration of an external redelivery policy.

It currently shows:

 <bean id="myRedeliveryPolicy" class="org.apache.camel.processor.RedeliveryPolicy">
        <property name="maximumRedeliveries" value="${myprop.max}"/>
    </bean>

     <onException>
         <!-- you can define multiple exceptions just adding more exception elements as show below -->
         <exception>com.mycompany.MyFirstException</exception>
         <exception>com.mycompany.MySecondException</exception>

         <!-- here we reference our redelivery policy defined above -->
         <redeliveryPolicy ref="myRedeliveryPolicy"/>
     </onException>

But it should be:

 <bean id="myRedeliveryPolicy" class="org.apache.camel.processor.RedeliveryPolicy">
        <property name="maximumRedeliveries" value="${myprop.max}"/>
    </bean>

     <onException redeliveryPolicyRef="myRedeliveryPolicy">
         <exception>com.mycompany.MyFirstException</exception>
         <exception>com.mycompany.MySecondException</exception>
         <!-- more config here -->
     </onException>



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira