You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2014/05/13 17:23:23 UTC

svn commit: r908710 [4/5] - in /websites/production/camel/content: ./ 2014/05/13/ cache/

Modified: websites/production/camel/content/book-pattern-appendix.html
==============================================================================
--- websites/production/camel/content/book-pattern-appendix.html (original)
+++ websites/production/camel/content/book-pattern-appendix.html Tue May 13 15:23:23 2014
@@ -4471,62 +4471,30 @@ from("file://inbox").sort(body
 <h4 id="BookPatternAppendix-UsingThisPattern.36">Using This Pattern</h4>
 
 <p>If you would like to use this EIP Pattern then please read the <a shape="rect" href="getting-started.html">Getting Started</a>, you may also find the <a shape="rect" href="architecture.html">Architecture</a> useful particularly the description of <a shape="rect" href="endpoint.html">Endpoint</a> and <a shape="rect" href="uris.html">URIs</a>. Then you could try out some of the <a shape="rect" href="examples.html">Examples</a> first before trying this pattern out.</p>
-<h3 id="BookPatternAppendix-PollingConsumer">Polling Consumer</h3>
-
-<p>Camel supports implementing the <a shape="rect" class="external-link" href="http://www.enterpriseintegrationpatterns.com/PollingConsumer.html" rel="nofollow">Polling Consumer</a> from the <a shape="rect" href="enterprise-integration-patterns.html">EIP patterns</a> using the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a> interface which can be created via the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html#createPollingConsumer()">Endpoint.createPollingConsumer()</a> method.</p>
-
-<p><img class="confluence-embedded-image confluence-external-resource" src="http://www.enterpriseintegrationpatterns.com/img/PollingConsumerSolution.gif" data-image-src="http://www.enterpriseintegrationpatterns.com/img/PollingConsumerSolution.gif"></p>
-
-<p>So in your Java code you can do</p>
-
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-Endpoint endpoint = context.getEndpoint(&quot;activemq:my.queue&quot;);
+<h3 id="BookPatternAppendix-PollingConsumer">Polling Consumer</h3><p>Camel supports implementing the <a shape="rect" class="external-link" href="http://www.enterpriseintegrationpatterns.com/PollingConsumer.html" rel="nofollow">Polling Consumer</a> from the <a shape="rect" href="enterprise-integration-patterns.html">EIP patterns</a> using the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a> interface which can be created via the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Endpoint.html#createPollingConsumer()">Endpoint.createPollingConsumer()</a> method.</p><p><img class="confluence-embedded-image confluence-external-resource" src="http://www.enterpriseintegrationpatterns.com/img/PollingConsumerSolution.gif" data-image-src="http://www.enterpriseintegrationpatterns.com/img/PollingConsumerSolution.gif"><
 /p><p>So in your Java code you can do</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[Endpoint endpoint = context.getEndpoint(&quot;activemq:my.queue&quot;);
 PollingConsumer consumer = endpoint.createPollingConsumer();
 Exchange exchange = consumer.receive();
 ]]></script>
-</div></div>
-
-<p>The <code>ConsumerTemplate</code> (discussed below) is also available.</p>
-
-<p>There are 3 main polling methods on <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a></p>
-
-<div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Method name </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receive()">receive()</a> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Waits until a message is available and then returns it; potentially blocking forever </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receive(long)">receive(long)</a> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Attempts to receive a message exchange, waiting up to the given timeout and returning null if no message 
 exchange could be received within the time available </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receiveNoWait()">receiveNoWait()</a> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Attempts to receive a message exchange immediately without waiting and returning null if a message exchange is not available yet </p></td></tr></tbody></table></div>
-
-
-<h3 id="BookPatternAppendix-ConsumerTemplate">ConsumerTemplate</h3>
-
-<p>The <code>ConsumerTemplate</code> is a template much like Spring's JmsTemplate or JdbcTemplate supporting the <a shape="rect" href="polling-consumer.html">Polling Consumer</a> EIP. With the template you can consume <a shape="rect" href="exchange.html">Exchange</a>s from an <a shape="rect" href="endpoint.html">Endpoint</a>.</p>
-
-<p>The template supports the 3 operations above, but also including convenient methods for returning the body, etc <code>consumeBody</code>.<br clear="none">
-The example from above using ConsumerTemplate is:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-Exchange exchange = consumerTemplate.receive(&quot;activemq:my.queue&quot;);
+</div></div><p>The <code>ConsumerTemplate</code> (discussed below) is also available.</p><p>There are 3 main polling methods on <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a></p><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Method name</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receive()">receive()</a></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Waits until a message is available and then returns it; potentially blocking forever</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="http://camel.
 apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receive(long)">receive(long)</a></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Attempts to receive a message exchange, waiting up to the given timeout and returning null if no message exchange could be received within the time available</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html#receiveNoWait()">receiveNoWait()</a></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Attempts to receive a message exchange immediately without waiting and returning null if a message exchange is not available yet</p></td></tr></tbody></table></div><h3 id="BookPatternAppendix-EventDrivenPollingConsumerOptions">EventDrivenPollingConsumer Options</h3><p>The EventDrivePollingConsumer (the default implementation) supports the following options:
 </p><div class="confluenceTableSmall">
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Option </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Default </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>pollingConsumerQueueSize</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>1000</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.14/2.13.1/2.12.4:</strong> The queue size for the internal handoff queue between the polling consumer, and producers sending data into the queue. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>pollingConsumerBlockWhenFull</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>true</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.14/2.13.1/2.12/4:</strong> Whether to block any producer if the int
 ernal queue is full. </p></td></tr></tbody></table>
+</div><p>Notice that some Camel&#160;<a shape="rect" href="components.html">Components</a>&#160;has their own implementation of&#160;<code>PollingConsumer</code> and therefore do not support the options above.</p><p>You can configure these options in endpoints&#160;<a shape="rect" href="uris.html">URIs</a>, such as shown below:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[Endpoint endpoint = context.getEndpoint(&quot;file:inbox?pollingConsumerQueueSize=50&quot;);
+PollingConsumer consumer = endpoint.createPollingConsumer();
+Exchange exchange = consumer.receive(5000);]]></script>
+</div></div><h3 id="BookPatternAppendix-ConsumerTemplate">ConsumerTemplate</h3><p>The <code>ConsumerTemplate</code> is a template much like Spring's JmsTemplate or JdbcTemplate supporting the <a shape="rect" href="polling-consumer.html">Polling Consumer</a> EIP. With the template you can consume <a shape="rect" href="exchange.html">Exchange</a>s from an <a shape="rect" href="endpoint.html">Endpoint</a>.</p><p>The template supports the 3 operations above, but also including convenient methods for returning the body, etc <code>consumeBody</code>.<br clear="none"> The example from above using ConsumerTemplate is:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[Exchange exchange = consumerTemplate.receive(&quot;activemq:my.queue&quot;);
 ]]></script>
-</div></div>
-<p>Or to extract and get the body you can do:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-Object body = consumerTemplate.receiveBody(&quot;activemq:my.queue&quot;);
+</div></div><p>Or to extract and get the body you can do:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[Object body = consumerTemplate.receiveBody(&quot;activemq:my.queue&quot;);
 ]]></script>
-</div></div>
-<p>And you can provide the body type as a parameter and have it returned as the type:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-String body = consumerTemplate.receiveBody(&quot;activemq:my.queue&quot;, String.class);
+</div></div><p>And you can provide the body type as a parameter and have it returned as the type:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[String body = consumerTemplate.receiveBody(&quot;activemq:my.queue&quot;, String.class);
 ]]></script>
-</div></div>
-<p>You get hold of a <code>ConsumerTemplate</code> from the <code>CamelContext</code> with the <code>createConsumerTemplate</code> operation:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-ConsumerTemplate consumer = context.createConsumerTemplate();
+</div></div><p>You get hold of a <code>ConsumerTemplate</code> from the <code>CamelContext</code> with the <code>createConsumerTemplate</code> operation:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[ConsumerTemplate consumer = context.createConsumerTemplate();
 ]]></script>
-</div></div>
-
-<h4 id="BookPatternAppendix-UsingConsumerTemplatewithSpringDSL">Using ConsumerTemplate with Spring DSL</h4>
-<p>With the Spring DSL we can declare the consumer in the CamelContext with the <strong>consumerTemplate</strong> tag, just like the ProducerTemplate. The example below illustrates this:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</div></div><h4 id="BookPatternAppendix-UsingConsumerTemplatewithSpringDSL">Using ConsumerTemplate with Spring DSL</h4><p>With the Spring DSL we can declare the consumer in the CamelContext with the <strong>consumerTemplate</strong> tag, just like the ProducerTemplate. The example below illustrates this:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: xml; gutter: false" type="syntaxhighlighter"><![CDATA[
 &lt;camelContext xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
     &lt;!-- define a producer template --&gt;
@@ -4540,10 +4508,7 @@ ConsumerTemplate consumer = context.crea
     &lt;/route&gt;
 &lt;/camelContext&gt;
 ]]></script>
-</div></div>
-
-<p>Then we can get leverage Spring to inject the <code>ConsumerTemplate</code> in our java class. The code below is part of an unit test but it shows how the consumer and producer can work together. </p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</div></div><p>Then we can get leverage Spring to inject the <code>ConsumerTemplate</code> in our java class. The code below is part of an unit test but it shows how the consumer and producer can work together.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 @ContextConfiguration
 public class SpringConsumerTemplateTest extends SpringRunWithTestSupport {
@@ -4579,13 +4544,7 @@ public class SpringConsumerTemplateTest 
 
 }
 ]]></script>
-</div></div>
-
-<h4 id="BookPatternAppendix-Timerbasedpollingconsumer">Timer based polling consumer</h4>
-<p>In this sample we use a <a shape="rect" href="timer.html">Timer</a> to schedule a route to be started every 5th second and invoke our bean <strong>MyCoolBean</strong> where we implement the business logic for the <a shape="rect" href="polling-consumer.html">Polling Consumer</a>. Here we want to consume all messages from a JMS queue, process the message and send them to the next queue.</p>
-
-<p>First we setup our route as:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</div></div><h4 id="BookPatternAppendix-Timerbasedpollingconsumer">Timer based polling consumer</h4><p>In this sample we use a <a shape="rect" href="timer.html">Timer</a> to schedule a route to be started every 5th second and invoke our bean <strong>MyCoolBean</strong> where we implement the business logic for the <a shape="rect" href="polling-consumer.html">Polling Consumer</a>. Here we want to consume all messages from a JMS queue, process the message and send them to the next queue.</p><p>First we setup our route as:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 MyCoolBean cool = new MyCoolBean();
 cool.setProducer(template);
@@ -4595,10 +4554,7 @@ from(&quot;timer://foo?period=5000&quot;
 
 from(&quot;activemq:queue.foo&quot;).to(&quot;mock:result&quot;);
 ]]></script>
-</div></div>
-
-<p>And then we have out logic in our bean:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</div></div><p>And then we have out logic in our bean:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
 public static class MyCoolBean {
 
@@ -4633,89 +4589,15 @@ public static class MyCoolBean {
     }
 }
 ]]></script>
-</div></div>
-
-
-<h3 id="BookPatternAppendix-ScheduledPollComponents">Scheduled Poll Components</h3>
-
-<p>Quite a few inbound Camel endpoints use a scheduled poll pattern to receive messages and push them through the Camel processing routes. That is to say externally from the client the endpoint appears to use an <a shape="rect" href="event-driven-consumer.html">Event Driven Consumer</a> but internally a scheduled poll is used to monitor some kind of state or resource and then fire message exchanges. </p>
-
-<p>Since this a such a common pattern, polling components can extend the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a> base class which makes it simpler to implement this pattern.</p>
-
-<p>There is also the <a shape="rect" href="quartz.html">Quartz Component</a> which provides scheduled delivery of messages using the Quartz enterprise scheduler.</p>
-
-<p>For more details see:</p>
-
-<ul><li><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a></li><li>Scheduled Polling Components
-	<ul><li><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a></li><li><a shape="rect" href="atom.html">Atom</a></li><li><a shape="rect" href="file2.html">File</a></li><li><a shape="rect" href="ftp2.html">FTP</a></li><li><a shape="rect" href="hbase.html">hbase</a></li><li><a shape="rect" href="ibatis.html">iBatis</a></li><li><a shape="rect" href="jpa.html">JPA</a></li><li><a shape="rect" href="mail.html">Mail</a></li><li><a shape="rect" href="mybatis.html">MyBatis</a></li><li><a shape="rect" href="quartz.html">Quartz</a></li><li><a shape="rect" href="snmp.html">SNMP</a></li><li><a shape="rect" href="aws-s3.html">AWS-S3</a></li><li><a shape="rect" href="aws-sqs.html">AWS-SQS</a></li></ul>
-	</li></ul>
-
-
-<h3 id="BookPatternAppendix-ScheduledPollConsumerOptions">ScheduledPollConsumer Options</h3>
-<p>The ScheduledPollConsumer supports the following options:</p>
-
-<div class="confluenceTableSmall">
+</div></div><h3 id="BookPatternAppendix-ScheduledPollComponents">Scheduled Poll Components</h3><p>Quite a few inbound Camel endpoints use a scheduled poll pattern to receive messages and push them through the Camel processing routes. That is to say externally from the client the endpoint appears to use an <a shape="rect" href="event-driven-consumer.html">Event Driven Consumer</a> but internally a scheduled poll is used to monitor some kind of state or resource and then fire message exchanges.</p><p>Since this a such a common pattern, polling components can extend the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a> base class which makes it simpler to implement this pattern.</p><p>There is also the <a shape="rect" href="quartz.html">Quartz Component</a> which provides scheduled delivery of messages using the Quartz enterprise scheduler.</p><p>For more detai
 ls see:</p><ul><li><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/PollingConsumer.html">PollingConsumer</a></li><li>Scheduled Polling Components<ul><li><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a></li><li><a shape="rect" href="atom.html">Atom</a></li><li><a shape="rect" href="file2.html">File</a></li><li><a shape="rect" href="ftp2.html">FTP</a></li><li><a shape="rect" href="hbase.html">hbase</a></li><li><a shape="rect" href="ibatis.html">iBATIS</a></li><li><a shape="rect" href="jpa.html">JPA</a></li><li><a shape="rect" href="mail.html">Mail</a></li><li><a shape="rect" href="mybatis.html">MyBatis</a></li><li><a shape="rect" href="quartz.html">Quartz</a></li><li><a shape="rect" href="snmp.html">SNMP</a></li><li><a shape="rect" href="aws-s3.html">AWS-S3</a></li><li><a shape="rect" href=
 "aws-sqs.html">AWS-SQS</a></li></ul></li></ul><h3 id="BookPatternAppendix-ScheduledPollConsumerOptions">ScheduledPollConsumer Options</h3><p>The ScheduledPollConsumer supports the following options:</p><div class="confluenceTableSmall">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Option </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Default </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>pollStrategy</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><ul class="alternate" type="square"><li></li></ul>
 </td><td colspan="1" rowspan="1" class="confluenceTd"><p> A pluggable <code>org.apache.camel.PollingConsumerPollingStrategy</code> allowing you to provide your custom implementation to control error handling usually occurred during the <code>poll</code> operation <strong>before</strong> an <a shape="rect" href="exchange.html" title="Exchange">Exchange</a> have been created and being routed in Camel. In other words the error occurred while the polling was gathering information, for instance access to a file network failed so Camel cannot access it to scan for files. The default implementation will log the caused exception at <code>WARN</code> level and ignore it. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>sendEmptyMessageWhenIdle</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>false</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.9:</strong> If the polling consumer did not poll any files
 , you can enable this option to send an empty message (no body) instead. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>startScheduler</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>true</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Whether the scheduler should be auto started. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>initialDelay</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>1000</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Milliseconds before the first poll starts. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>delay</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>500</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Milliseconds before the next poll. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>useFixedDela
 y</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> Controls if fixed delay or fixed rate is used. See <a shape="rect" class="external-link" href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ScheduledExecutorService.html" rel="nofollow">ScheduledExecutorService</a> in JDK for details. In <strong>Camel 2.7.x</strong> or older the default value is <code>false</code>. From <strong>Camel 2.8</strong> onwards the default value is <code>true</code>. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>timeUnit</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>TimeUnit.MILLISECONDS</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> time unit for <code>initialDelay</code> and <code>delay</code> options. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>runLoggingLevel</code> </p></td><td colspan="
 1" rowspan="1" class="confluenceTd"><p> <code>TRACE</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.8:</strong> The consumer logs a start/complete log line when it polls. This option allows you to configure the logging level for that. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>scheduledExecutorService</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>null</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.10:</strong> Allows for configuring a custom/shared thread pool to use for the consumer. By default each consumer has its own single threaded thread pool. This option allows you to share a thread pool among multiple consumers. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>greedy</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>false</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><
 p> <strong>Camel 2.10.6/2.11.1:</strong> If greedy is enabled, then the ScheduledPollConsumer will run immediately again, if the previous run polled 1 or more messages. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>scheduler</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>null</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.12:</strong> Allow to plugin a custom <code>org.apache.camel.spi.ScheduledPollConsumerScheduler</code> to use as the scheduler for firing when the polling consumer runs. The default implementation uses the <code>ScheduledExecutorService</code> and there is a <a shape="rect" href="quartz2.html" title="Quartz2">Quartz2</a>, and <a shape="rect" href="spring.html" title="Spring">Spring</a> based which supports CRON expressions. <strong>Notice:</strong> If using a custom scheduler then the options for <code>initialDelay</code>, <code>useFixedDelay</code>, <code>timeUnit</cod
 e>, and <code>scheduledExecutorService</code> may not be in use. Use the text <code>quartz2</code> to refer to use the <a shape="rect" href="quartz2.html" title="Quartz2">Quartz2</a> scheduler; and use the text <code>spring</code> to use the <a shape="rect" href="spring.html" title="Spring">Spring</a> based; and use the text <code>#myScheduler</code> to refer to a custom scheduler by its id in the <a shape="rect" href="registry.html" title="Registry">Registry</a>. See <a shape="rect" href="quartz2.html" title="Quartz2">Quartz2</a> page for an example. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>scheduler.xxx</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>null</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.12:</strong> To configure additional properties when using a custom <code>scheduler</code> or any of the <a shape="rect" href="quartz2.html" title="Quartz2">Quartz2</a>, <a shape="rec
 t" href="spring.html" title="Spring">Spring</a> based scheduler. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>backoffMultiplier</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>0</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.12:</strong> To let the scheduled polling consumer backoff if there has been a number of subsequent idles/errors in a row. The multiplier is then the number of polls that will be skipped before the next actual attempt is happening again. When this option is in use then <code>backoffIdleThreshold</code> and/or <code>backoffErrorThreshold</code> must also be configured. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>backoffIdleThreshold</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>0</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.12:</strong> The number of subsequent idle p
 olls that should happen before the <code>backoffMultipler</code> should kick-in. </p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>backoffErrorThreshold</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <code>0</code> </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> <strong>Camel 2.12:</strong> The number of subsequent error polls (failed due some error) that should happen before the <code>backoffMultipler</code> should kick-in. </p></td></tr></tbody></table>
-</div>
-
-<h3 id="BookPatternAppendix-Usingbackofftolettheschedulerbelessaggressive">Using backoff to let the scheduler be less aggressive</h3>
-<p><strong>Available as of Camel 2.12</strong></p>
-
-<p>The scheduled <a shape="rect" href="polling-consumer.html">Polling Consumer</a> is by default static by using the same poll frequency whether or not there is messages to pickup or not. From Camel 2.12 onwards you can configure the scheduled <a shape="rect" href="polling-consumer.html">Polling Consumer</a> to be more dynamic by using backoff. This allows the scheduler to skip N number of polls when it becomes idle, or there has been X number of errors in a row. See more details in the table above for the <code>backoffXXX</code> options.</p>
-
-<p>For example to let a FTP consumer backoff if its becoming idle for a while you can do:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-    from(&quot;ftp://myserver?username=foo&amp;passowrd=secret?delete=true&amp;delay=5s&amp;backoffMultiplier=6&amp;backoffIdleThreshold=5&quot;)
+</div><h3 id="BookPatternAppendix-Usingbackofftolettheschedulerbelessaggressive">Using backoff to let the scheduler be less aggressive</h3><p><strong>Available as of Camel 2.12</strong></p><p>The scheduled <a shape="rect" href="polling-consumer.html">Polling Consumer</a> is by default static by using the same poll frequency whether or not there is messages to pickup or not. From Camel 2.12 onwards you can configure the scheduled <a shape="rect" href="polling-consumer.html">Polling Consumer</a> to be more dynamic by using backoff. This allows the scheduler to skip N number of polls when it becomes idle, or there has been X number of errors in a row. See more details in the table above for the <code>backoffXXX</code> options.</p><p>For example to let a FTP consumer backoff if its becoming idle for a while you can do:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[    from(&quot;ftp://myserver?username=foo&amp;passowrd=secret?delete=true&amp;delay=5s&amp;backoffMultiplier=6&amp;backoffIdleThreshold=5&quot;)
       .to(&quot;bean:processFile&quot;);
 ]]></script>
-</div></div>
-
-<p>In this example, the FTP consumer will poll for new FTP files evert 5th second. But if it has been idle for 5 attempts in a row, then it will<br clear="none">
-backoff using a multiplier of 6, which means it will now poll every 5 x 6 = 30th second instead. When the consumer eventually pickup a file, then the backoff will reset, and the consumer will go back and poll every 5th second again.</p>
-
-<p>Camel will log at <code>DEBUG</code> level using <code>org.apache.camel.impl.ScheduledPollConsumer</code> when backoff is kicking-in. </p>
-
-
-<h3 id="BookPatternAppendix-Abouterrorhandlingandscheduledpollingconsumers">About error handling and scheduled polling consumers</h3>
-<p><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a> is scheduled based and its <code>run</code> method is invoked periodically based on schedule settings. But errors can also occur when a poll is being executed. For instance if Camel should poll a file network, and this network resource is not available then a <code>java.io.IOException</code> could occur. As this error happens <strong>before</strong> any <a shape="rect" href="exchange.html">Exchange</a> has been created and prepared for routing, then the regular <a shape="rect" href="error-handling-in-camel.html">Error handling in Camel</a> does not apply. So what does the consumer do then? Well the exception is propagated back to the <code>run</code> method where its handled. Camel will by default log the exception at <code>WARN</code> level and then ignore it. At next schedule the error could have been re
 solved and thus being able to poll the endpoint successfully.</p>
-
-<h3 id="BookPatternAppendix-Usingacustomscheduler">Using a custom scheduler</h3>
-<p><strong>Available as of Camel 2.12:</strong></p>
-
-<p>The SPI interface <code>org.apache.camel.spi.ScheduledPollConsumerScheduler</code> allows to implement a custom scheduler to control when the <a shape="rect" href="polling-consumer.html">Polling Consumer</a> runs. The default implementation is based on the JDKs <code>ScheduledExecutorService</code> with a single thread in the thread pool. There is a CRON based implementation in the <a shape="rect" href="quartz2.html">Quartz2</a>, and <a shape="rect" href="spring.html">Spring</a> components.</p>
-
-<p>For an example of developing and using a custom scheduler, see the unit test <code>org.apache.camel.component.file.FileConsumerCustomSchedulerTest</code> from the source code in <code>camel-core</code>.</p>
-
-<h4 id="BookPatternAppendix-ControllingtheerrorhandlingusingPollingConsumerPollStrategy">Controlling the error handling using PollingConsumerPollStrategy</h4>
-
-<p><code>org.apache.camel.PollingConsumerPollStrategy</code> is a pluggable strategy that you can configure on the <code>ScheduledPollConsumer</code>. The default implementation <code>org.apache.camel.impl.DefaultPollingConsumerPollStrategy</code> will log the caused exception at <code>WARN</code> level and then ignore this issue.</p>
-
-<p>The strategy interface provides the following 3 methods</p>
-<ul class="alternate"><li>begin
-	<ul class="alternate"><li><code>void begin(Consumer consumer, Endpoint endpoint)</code></li></ul>
-	</li><li>begin (<strong>Camel 2.3</strong>)
-	<ul class="alternate"><li><code>boolean begin(Consumer consumer, Endpoint endpoint)</code></li></ul>
-	</li><li>commit
-	<ul class="alternate"><li><code>void commit(Consumer consumer, Endpoint endpoint)</code></li></ul>
-	</li><li>commit (<strong>Camel 2.6</strong>)
-	<ul class="alternate"><li><code>void commit(Consumer consumer, Endpoint endpoint, int polledMessages)</code></li></ul>
-	</li><li>rollback
-	<ul class="alternate"><li><code>boolean rollback(Consumer consumer, Endpoint endpoint, int retryCounter, Exception e) throws Exception</code></li></ul>
-	</li></ul>
-
-
-<p>In <strong>Camel 2.3</strong> onwards the begin method returns a boolean which indicates whether or not to skipping polling. So you can implement your custom logic and return <code>false</code> if you do not want to poll this time.</p>
-
-<p>In <strong>Camel 2.6</strong> onwards the commit method has an additional parameter containing the number of message that was actually polled. For example if there was no messages polled, the value would be zero, and you can react accordingly.</p>
-
-<p>The most interesting is the <code>rollback</code> as it allows you do handle the caused exception and decide what to do. </p>
-
-<p>For instance if we want to provide a retry feature to a scheduled consumer we can implement the <code>PollingConsumerPollStrategy</code> method and put the retry logic in the <code>rollback</code> method. Lets just retry up till 3 times:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-    public boolean rollback(Consumer consumer, Endpoint endpoint, int retryCounter, Exception e) throws Exception {
+</div></div><p>In this example, the FTP consumer will poll for new FTP files evert 5th second. But if it has been idle for 5 attempts in a row, then it will<br clear="none"> backoff using a multiplier of 6, which means it will now poll every 5 x 6 = 30th second instead. When the consumer eventually pickup a file, then the backoff will reset, and the consumer will go back and poll every 5th second again.</p><p>Camel will log at <code>DEBUG</code> level using <code>org.apache.camel.impl.ScheduledPollConsumer</code> when backoff is kicking-in.</p><h3 id="BookPatternAppendix-Abouterrorhandlingandscheduledpollingconsumers">About error handling and scheduled polling consumers</h3><p><a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/impl/ScheduledPollConsumer.html">ScheduledPollConsumer</a> is scheduled based and its <code>run</code> method is invoked periodically based on schedule settings. But errors can also occur when 
 a poll is being executed. For instance if Camel should poll a file network, and this network resource is not available then a <code>java.io.IOException</code> could occur. As this error happens <strong>before</strong> any <a shape="rect" href="exchange.html">Exchange</a> has been created and prepared for routing, then the regular <a shape="rect" href="error-handling-in-camel.html">Error handling in Camel</a> does not apply. So what does the consumer do then? Well the exception is propagated back to the <code>run</code> method where its handled. Camel will by default log the exception at <code>WARN</code> level and then ignore it. At next schedule the error could have been resolved and thus being able to poll the endpoint successfully.</p><h3 id="BookPatternAppendix-Usingacustomscheduler">Using a custom scheduler</h3><p><strong>Available as of Camel 2.12:</strong></p><p>The SPI interface <code>org.apache.camel.spi.ScheduledPollConsumerScheduler</code> allows to implement a custom sch
 eduler to control when the <a shape="rect" href="polling-consumer.html">Polling Consumer</a> runs. The default implementation is based on the JDKs <code>ScheduledExecutorService</code> with a single thread in the thread pool. There is a CRON based implementation in the <a shape="rect" href="quartz2.html">Quartz2</a>, and <a shape="rect" href="spring.html">Spring</a> components.</p><p>For an example of developing and using a custom scheduler, see the unit test <code>org.apache.camel.component.file.FileConsumerCustomSchedulerTest</code> from the source code in <code>camel-core</code>.</p><h4 id="BookPatternAppendix-ControllingtheerrorhandlingusingPollingConsumerPollStrategy">Controlling the error handling using PollingConsumerPollStrategy</h4><p><code>org.apache.camel.PollingConsumerPollStrategy</code> is a pluggable strategy that you can configure on the <code>ScheduledPollConsumer</code>. The default implementation <code>org.apache.camel.impl.DefaultPollingConsumerPollStrategy</code
 > will log the caused exception at <code>WARN</code> level and then ignore this issue.</p><p>The strategy interface provides the following 3 methods</p><ul class="alternate"><li>begin<ul class="alternate"><li><code>void begin(Consumer consumer, Endpoint endpoint)</code></li></ul></li><li>begin (<strong>Camel 2.3</strong>)<ul class="alternate"><li><code>boolean begin(Consumer consumer, Endpoint endpoint)</code></li></ul></li><li>commit<ul class="alternate"><li><code>void commit(Consumer consumer, Endpoint endpoint)</code></li></ul></li><li>commit (<strong>Camel 2.6</strong>)<ul class="alternate"><li><code>void commit(Consumer consumer, Endpoint endpoint, int polledMessages)</code></li></ul></li><li>rollback<ul class="alternate"><li><code>boolean rollback(Consumer consumer, Endpoint endpoint, int retryCounter, Exception e) throws Exception</code></li></ul></li></ul><p>In <strong>Camel 2.3</strong> onwards the begin method returns a boolean which indicates whether or not to skipping po
 lling. So you can implement your custom logic and return <code>false</code> if you do not want to poll this time.</p><p>In <strong>Camel 2.6</strong> onwards the commit method has an additional parameter containing the number of message that was actually polled. For example if there was no messages polled, the value would be zero, and you can react accordingly.</p><p>The most interesting is the <code>rollback</code> as it allows you do handle the caused exception and decide what to do.</p><p>For instance if we want to provide a retry feature to a scheduled consumer we can implement the <code>PollingConsumerPollStrategy</code> method and put the retry logic in the <code>rollback</code> method. Lets just retry up till 3 times:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[    public boolean rollback(Consumer consumer, Endpoint endpoint, int retryCounter, Exception e) throws Exception {
         if (retryCounter &lt; 3) {
             // return true to tell Camel that it should retry the poll immediately
             return true;
@@ -4724,33 +4606,17 @@ backoff using a multiplier of 6, which m
         return false;
     }
 ]]></script>
-</div></div>
-
-<p>Notice that we are given the <code>Consumer</code> as a parameter. We could use this to <em>restart</em> the consumer as we can invoke stop and start:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-    // error occurred lets restart the consumer, that could maybe resolve the issue
+</div></div><p>Notice that we are given the <code>Consumer</code> as a parameter. We could use this to <em>restart</em> the consumer as we can invoke stop and start:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[    // error occurred lets restart the consumer, that could maybe resolve the issue
     consumer.stop();
     consumer.start();
 ]]></script>
-</div></div>
-
-<p><strong>Notice:</strong> If you implement the <code>begin</code> operation make sure to avoid throwing exceptions as in such a case the <code>poll</code> operation is not invoked and Camel will invoke the <code>rollback</code> directly.</p>
-
-<h4 id="BookPatternAppendix-ConfiguringantousePollingConsumerPollStrategy">Configuring an <a shape="rect" href="endpoint.html">Endpoint</a> to use <code>PollingConsumerPollStrategy</code></h4>
-<p>To configure an <a shape="rect" href="endpoint.html">Endpoint</a> to use a custom <code>PollingConsumerPollStrategy</code> you use the option <code>pollStrategy</code>. For example in the file consumer below we want to use our custom strategy defined in the <a shape="rect" href="registry.html">Registry</a> with the bean id <code>myPoll</code>:</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-    from(&quot;file://inbox/?pollStrategy=#myPoll&quot;).to(&quot;activemq:queue:inbox&quot;)
+</div></div><p><strong>Notice:</strong> If you implement the <code>begin</code> operation make sure to avoid throwing exceptions as in such a case the <code>poll</code> operation is not invoked and Camel will invoke the <code>rollback</code> directly.</p><h4 id="BookPatternAppendix-ConfiguringantousePollingConsumerPollStrategy">Configuring an <a shape="rect" href="endpoint.html">Endpoint</a> to use <code>PollingConsumerPollStrategy</code></h4><p>To configure an <a shape="rect" href="endpoint.html">Endpoint</a> to use a custom <code>PollingConsumerPollStrategy</code> you use the option <code>pollStrategy</code>. For example in the file consumer below we want to use our custom strategy defined in the <a shape="rect" href="registry.html">Registry</a> with the bean id <code>myPoll</code>:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[    from(&quot;file://inbox/?pollStrategy=#myPoll&quot;).to(&quot;activemq:queue:inbox&quot;)
 ]]></script>
-</div></div>
-
-<h4 id="BookPatternAppendix-UsingThisPattern.37">Using This Pattern</h4>
-
-<p>If you would like to use this EIP Pattern then please read the <a shape="rect" href="getting-started.html">Getting Started</a>, you may also find the <a shape="rect" href="architecture.html">Architecture</a> useful particularly the description of <a shape="rect" href="endpoint.html">Endpoint</a> and <a shape="rect" href="uris.html">URIs</a>. Then you could try out some of the <a shape="rect" href="examples.html">Examples</a> first before trying this pattern out.</p>
+</div></div><p></p><h4 id="BookPatternAppendix-UsingThisPattern.37">Using This Pattern</h4>
 
-<h3 id="BookPatternAppendix-SeeAlso.4">See Also</h3>
-<ul class="alternate"><li><a shape="rect" href="pojo-consuming.html">POJO Consuming</a></li><li><a shape="rect" href="batch-consumer.html">Batch Consumer</a></li></ul>
+<p>If you would like to use this EIP Pattern then please read the <a shape="rect" href="getting-started.html">Getting Started</a>, you may also find the <a shape="rect" href="architecture.html">Architecture</a> useful particularly the description of <a shape="rect" href="endpoint.html">Endpoint</a> and <a shape="rect" href="uris.html">URIs</a>. Then you could try out some of the <a shape="rect" href="examples.html">Examples</a> first before trying this pattern out.</p><h3 id="BookPatternAppendix-SeeAlso.4">See Also</h3><ul class="alternate"><li><a shape="rect" href="pojo-consuming.html">POJO Consuming</a></li><li><a shape="rect" href="batch-consumer.html">Batch Consumer</a></li></ul>
 <h3 id="BookPatternAppendix-CompetingConsumers">Competing Consumers</h3>
 
 <p>Camel supports the <a shape="rect" class="external-link" href="http://www.enterpriseintegrationpatterns.com/CompetingConsumers.html" rel="nofollow">Competing Consumers</a> from the <a shape="rect" href="enterprise-integration-patterns.html">EIP patterns</a> using a few different components.</p>

Modified: websites/production/camel/content/book-tutorials.html
==============================================================================
--- websites/production/camel/content/book-tutorials.html (original)
+++ websites/production/camel/content/book-tutorials.html Tue May 13 15:23:23 2014
@@ -157,11 +157,11 @@ While not actual tutorials you might fin
                     </div>
     </div>
 <h2 id="BookTutorials-Preface">Preface</h2><p>This tutorial aims to guide the reader through the stages of creating a project which uses Camel to facilitate the routing of messages from a JMS queue to a <a shape="rect" class="external-link" href="http://www.springramework.org" rel="nofollow">Spring</a> service. The route works in a synchronous fashion returning a response to the client.</p><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051211277 {padding: 0px;}
-div.rbtoc1399051211277 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1399051211277 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994502557 {padding: 0px;}
+div.rbtoc1399994502557 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1399994502557 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1399051211277">
+/*]]>*/</style></p><div class="toc-macro rbtoc1399994502557">
 <ul class="toc-indentation"><li><a shape="rect" href="#Tutorial-JmsRemoting-TutorialonSpringRemotingwithJMS">Tutorial on Spring Remoting with JMS</a></li><li><a shape="rect" href="#Tutorial-JmsRemoting-Preface">Preface</a></li><li><a shape="rect" href="#Tutorial-JmsRemoting-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#Tutorial-JmsRemoting-Distribution">Distribution</a></li><li><a shape="rect" href="#Tutorial-JmsRemoting-About">About</a></li><li><a shape="rect" href="#Tutorial-JmsRemoting-CreatetheCamelProject">Create the Camel Project</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Tutorial-JmsRemoting-UpdatethePOMwithDependencies">Update the POM with Dependencies</a></li></ul>
 </li><li><a shape="rect" href="#Tutorial-JmsRemoting-WritingtheServer">Writing the Server</a>
@@ -2347,11 +2347,11 @@ So we completed the last piece in the pi
 
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051211694 {padding: 0px;}
-div.rbtoc1399051211694 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1399051211694 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994504143 {padding: 0px;}
+div.rbtoc1399994504143 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1399994504143 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1399051211694">
+/*]]>*/</style><div class="toc-macro rbtoc1399994504143">
 <ul class="toc-indentation"><li><a shape="rect" href="#Tutorial-AXIS-Camel-TutorialusingAxis1.4withApacheCamel">Tutorial using Axis 1.4 with Apache Camel</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Tutorial-AXIS-Camel-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-Distribution">Distribution</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-Introduction">Introduction</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-SettinguptheprojecttorunAxis">Setting up the project to run Axis</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Tutorial-AXIS-Camel-Maven2">Maven 2</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-wsdl">wsdl</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-ConfiguringAxis">Configuring Axis</a></li><li><a shape="rect" href="#Tutorial-AXIS-Camel-RunningtheExample">Running the Example</a></li></ul>

Added: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary file - no diff available.

Propchange: websites/production/camel/content/cache/main.pageCache
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: websites/production/camel/content/camel-30-ideas.html
==============================================================================
--- websites/production/camel/content/camel-30-ideas.html (original)
+++ websites/production/camel/content/camel-30-ideas.html Tue May 13 15:23:23 2014
@@ -109,11 +109,11 @@
 <div class="sectionMacroRow"><div class="columnMacro" style="width:20%;min-width:20%;max-width:20%;">
 <div class="panel" style="border-width: 1px;"><div class="panelContent">
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051170494 {padding: 0px;}
-div.rbtoc1399051170494 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1399051170494 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994450104 {padding: 0px;}
+div.rbtoc1399994450104 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1399994450104 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1399051170494">
+/*]]>*/</style><div class="toc-macro rbtoc1399994450104">
 <ul class="toc-indentation"><li><a shape="rect" href="#Camel3.0-Ideas-Camel3.0Ideas">Camel 3.0 Ideas</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Camel3.0-Ideas-Tableofcontents">Table of contents</a></li><li><a shape="rect" href="#Camel3.0-Ideas-JDKsupport">JDK support</a></li><li><a shape="rect" href="#Camel3.0-Ideas-JDK8JavaDSL">JDK8 Java DSL</a></li><li><a shape="rect" href="#Camel3.0-Ideas-RoutingCoreRe-engineering(raulk)">Routing Core Re-engineering (raulk)</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#Camel3.0-Ideas-ConvertingsomeEIPsfrom&quot;performers&quot;tomere&quot;deciders&quot;">Converting some EIPs from "performers" to mere "deciders"</a></li></ul>

Modified: websites/production/camel/content/camel-jmx.html
==============================================================================
--- websites/production/camel/content/camel-jmx.html (original)
+++ websites/production/camel/content/camel-jmx.html Tue May 13 15:23:23 2014
@@ -87,11 +87,11 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="CamelJMX-CamelJMX">Camel JMX</h2><p>Apache Camel has extensive support for JMX to allow you to monitor and control the Camel managed objects with a JMX client.<br clear="none"> Camel also provides a <a shape="rect" href="jmx.html">JMX</a> component that allows you to subscribe to MBean notifications. This page is about how to manage and monitor Camel using JMX.</p><h3 id="CamelJMX-ActivatingJMXinCamel">Activating JMX in Camel</h3><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051166552 {padding: 0px;}
-div.rbtoc1399051166552 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1399051166552 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994447143 {padding: 0px;}
+div.rbtoc1399994447143 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1399994447143 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1399051166552">
+/*]]>*/</style></p><div class="toc-macro rbtoc1399994447143">
 <ul class="toc-indentation"><li><a shape="rect" href="#CamelJMX-CamelJMX">Camel JMX</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CamelJMX-ActivatingJMXinCamel">Activating JMX in Camel</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CamelJMX-UsingJMXtomanageApacheCamel">Using JMX to manage Apache Camel</a></li><li><a shape="rect" href="#CamelJMX-DisablingJMXinstrumentationagentinCamel">Disabling JMX instrumentation agent in Camel</a></li><li><a shape="rect" href="#CamelJMX-LocatingaMBeanServerintheJavaVM">Locating a MBeanServer in the Java VM</a></li><li><a shape="rect" href="#CamelJMX-CreatingJMXRMIConnectorServer">Creating JMX RMI Connector Server</a></li><li><a shape="rect" href="#CamelJMX-JMXServiceURL">JMX Service URL</a></li><li><a shape="rect" href="#CamelJMX-TheSystemPropertiesforCamelJMXsupport">The System Properties for Camel JMX support</a></li><li><a shape="rect" href="#CamelJMX-HowtouseauthenticationwithJMX">How to use authentication with JMX</a></li><li><a shape="rect" href="#CamelJMX-JMXinsideanApplicationServer">JMX inside an Application Server</a>

Modified: websites/production/camel/content/cxf.html
==============================================================================
--- websites/production/camel/content/cxf.html (original)
+++ websites/production/camel/content/cxf.html Tue May 13 15:23:23 2014
@@ -99,11 +99,11 @@
                     </div>
     </div>
 <p>The <strong>cxf:</strong> component provides integration with <a shape="rect" href="http://cxf.apache.org">Apache CXF</a> for connecting to JAX-WS services hosted in CXF.</p><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051187600 {padding: 0px;}
-div.rbtoc1399051187600 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1399051187600 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994476700 {padding: 0px;}
+div.rbtoc1399994476700 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1399994476700 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1399051187600">
+/*]]>*/</style></p><div class="toc-macro rbtoc1399994476700">
 <ul class="toc-indentation"><li><a shape="rect" href="#CXF-CXFComponent">CXF Component</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CXF-URIformat">URI format</a></li><li><a shape="rect" href="#CXF-Options">Options</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#CXF-Thedescriptionsofthedataformats">The descriptions of the dataformats</a>

Modified: websites/production/camel/content/index.html
==============================================================================
--- websites/production/camel/content/index.html (original)
+++ websites/production/camel/content/index.html Tue May 13 15:23:23 2014
@@ -106,6 +106,26 @@ There's a great discussion about Camel a
 </p><div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~njiang ">
+               <img class="userLogo logo" src="index.userimage/njiang-38992-pp-pic.jpeg" alt="User icon: njiang" title="njiang">
+           </a>            </span>
+            <span class="blogHeading">
+                <a shape="rect" class="blogHeading" href="2014/05/13/apache-camel-2131-released.html">Apache Camel 2.13.1 Released</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~njiang ">willem jiang</a> posted on May 13, 2014</div>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <div class="wiki-content"><p>The Camel community announces the immediate availability of the new major release Camel 2.13.1. This release contains a total of 74 fixes applied in the past 2 months by the community on the Camel 2.13.x maintenance branch.</p><p>The artifacts are published and ready for you to&#160;<a shape="rect" class="external-link" href="http://camel.apache.org/download.html">download</a>&#160;either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the&#160;<a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326053&amp;styleName=&amp;projectId=12311211">release notes</a><a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324786&amp;projectId=12311211"></a>.</p><p>Many thanks to all who made this release possible.</p><p>On behalf of the Camel PMC,</p><p>Willem</p></div>
+    </div>
+    
+        
+    </div>
+    
+        
+<div class="blog-post-listing">
+            <div class="logo-heading-block">
+            <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="    /confluence/display/~muellerc ">
                <img class="userLogo logo" src="index.userimage/muellerc-38851-pp-christian.png" alt="User icon: muellerc" title="muellerc">
            </a>            </span>
@@ -201,26 +221,6 @@ There's a great discussion about Camel a
     
         
     </div>
-    
-        
-<div class="blog-post-listing">
-            <div class="logo-heading-block">
-            <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="    /confluence/display/~hadrian@apache.org ">
-               <img class="userLogo logo" src="index.userimage/0e406ed.jpg" alt="User icon: hadrian@apache.org" title="hadrian@apache.org">
-           </a>            </span>
-            <span class="blogHeading">
-                <a shape="rect" class="blogHeading" href="2014/01/16/apache-camel-2113-released.html">Apache Camel 2.11.3 Released</a>
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~hadrian@apache.org ">Hadrian Zbarcea</a> posted on Jan 16, 2014</div>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>The Camel community announces the immediate availability of the new patch release Camel 2.11.3. A bit later than planned, the 2.11.3 release contains a total of 116 fixes applied in the past 3+ months by the community on the Camel 2.11.x maintenance branch.</p><p>The artifacts are published and ready for you to&#160;<a shape="rect" class="external-link" href="http://camel.apache.org/download.html">download</a>&#160;either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the&#160;<a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311211&amp;version=12325024">release notes</a>.</p><p>Many thanks to all who made this release possible.</p><p>On behalf of the Camel PMC,<br clear="none">Hadrian</p>
-    </div>
-    
-        
-    </div>
     <p><a shape="rect" href="https://cwiki.apache.org/confluence/createrssfeed.action?types=blogpost&amp;spaces=CAMEL&amp;title=Apache+Camel+News&amp;sort=modified&amp;maxResults=10&amp;timeSpan=60&amp;showContent=true&amp;confirm=Create+RSS+Feed">RSS Feed</a></p><h3 id="Index-Links">Links</h3><ul><li><a shape="rect" href="getting-started.html">Getting Started</a></li><li><a shape="rect" href="architecture.html">Architecture</a></li><li><a shape="rect" href="user-guide.html">User Guide</a></li><li><a shape="rect" href="enterprise-integration-patterns.html">Enterprise Integration Patterns</a></li><li><a shape="rect" href="news.html">More News</a></li></ul></div>
         </td>
         <td valign="top">

Modified: websites/production/camel/content/news.html
==============================================================================
--- websites/production/camel/content/news.html (original)
+++ websites/production/camel/content/news.html Tue May 13 15:23:23 2014
@@ -84,6 +84,26 @@
 <div class="blog-post-listing">
             <div class="logo-heading-block">
             <span class="logoBlock">
+                <a shape="rect" class="userLogoLink" href="    /confluence/display/~njiang ">
+               <img class="userLogo logo" src="news.userimage/njiang-38992-pp-pic.jpeg" alt="User icon: njiang" title="njiang">
+           </a>            </span>
+            <span class="blogHeading">
+                <a shape="rect" class="blogHeading" href="2014/05/13/apache-camel-2131-released.html">Apache Camel 2.13.1 Released</a>
+                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~njiang ">willem jiang</a> posted on May 13, 2014</div>
+            
+        </div>
+    
+    <div class="wiki-content">
+        <div class="wiki-content"><p>The Camel community announces the immediate availability of the new major release Camel 2.13.1. This release contains a total of 74 fixes applied in the past 2 months by the community on the Camel 2.13.x maintenance branch.</p><p>The artifacts are published and ready for you to&#160;<a shape="rect" class="external-link" href="http://camel.apache.org/download.html">download</a>&#160;either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the&#160;<a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326053&amp;styleName=&amp;projectId=12311211">release notes</a><a shape="rect" class="external-link" href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324786&amp;projectId=12311211"></a>.</p><p>Many thanks to all who made this release possible.</p><p>On behalf of the Camel PMC,</p><p>Willem</p></div>
+    </div>
+    
+        
+    </div>
+    
+        
+<div class="blog-post-listing">
+            <div class="logo-heading-block">
+            <span class="logoBlock">
                 <a shape="rect" class="userLogoLink" href="    /confluence/display/~muellerc ">
                <img class="userLogo logo" src="news.userimage/muellerc-38851-pp-christian.png" alt="User icon: muellerc" title="muellerc">
            </a>            </span>
@@ -548,37 +568,6 @@ Hadrian</p>
     
         
     </div>
-    
-        
-<div class="blog-post-listing">
-            <div class="logo-heading-block">
-            <span class="logoBlock">
-                <a shape="rect" class="userLogoLink" href="    /confluence/display/~muellerc ">
-               <img class="userLogo logo" src="news.userimage/muellerc-38851-pp-christian.png" alt="User icon: muellerc" title="muellerc">
-           </a>            </span>
-            <span class="blogHeading">
-                <a shape="rect" class="blogHeading" href="2013/04/22/apache-camel-2110-released.html">Apache Camel 2.11.0 Released</a>
-                </span><div class="page-metadata not-personal"><a shape="rect" class="url fn confluence-userlink" href="    /confluence/display/~muellerc ">Christian Mueller</a> posted on Apr 22, 2013</div>
-            
-        </div>
-    
-    <div class="wiki-content">
-        <p>The <a shape="rect" class="external-link" href="http://camel.apache.org">Apache Camel</a> project is a powerful open source integration framework based on known <a shape="rect" class="external-link" href="http://camel.apache.org/enterprise-integration-patterns.html">Enterprise Integration Patterns</a>.</p>
-
-<p>The Camel community announces the immediate availability of a new minor release camel-2.11.0. This release is issued after 9 months of intense efforts. During this period the camel community continued to support previous versions and issued various patch releases as well.</p>
-
-<p>The camel-2.11.0 release comes with an impressive 679 issues fixed. Camel is the open source integration framework with the largest support of protocols and data formats on the market. This release adds another 12 components, supporting technologies like cmis, couchdb, elasticsearch, redis, rx and "Springless" JMS integration.</p>
-
-<p>The artifacts are published and ready for you to <a shape="rect" class="external-link" href="http://camel.apache.org/download.html">download</a> either from the Apache mirrors or from the Central Maven repository.<br clear="none">
-For more details please take a look at the <a shape="rect" class="external-link" href="http://camel.apache.org/camel-2110-release.html">release notes</a>.</p>
-
-<p>Many thanks to the Camel community for making this release possible.</p>
-
-<p>Christian</p>
-    </div>
-    
-        
-    </div>
     </div>
         </td>
         <td valign="top">

Modified: websites/production/camel/content/scala-dsl-eip.html
==============================================================================
--- websites/production/camel/content/scala-dsl-eip.html (original)
+++ websites/production/camel/content/scala-dsl-eip.html Tue May 13 15:23:23 2014
@@ -100,11 +100,11 @@ You can check the <a shape="rect" class=
 
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1399051223238 {padding: 0px;}
-div.rbtoc1399051223238 ul {list-style: none;margin-left: 0px;}
-div.rbtoc1399051223238 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1399994519795 {padding: 0px;}
+div.rbtoc1399994519795 ul {list-style: none;margin-left: 0px;}
+div.rbtoc1399994519795 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1399051223238">
+/*]]>*/</style><div class="toc-macro rbtoc1399994519795">
 <ul class="toc-indentation"><li><span class="TOCOutline">1</span> <a shape="rect" href="#ScalaDSL-EIP-Messagingsystems">Messaging systems</a>
 <ul class="toc-indentation"><li><span class="TOCOutline">1.1</span> <a shape="rect" href="#ScalaDSL-EIP-Pipelinepipeline">Pipeline</a></li><li><span class="TOCOutline">1.2</span> <a shape="rect" href="#ScalaDSL-EIP-Filterfilter">Filter</a></li></ul>
 </li><li><span class="TOCOutline">2</span> <a shape="rect" href="#ScalaDSL-EIP-Messagingchannels">Messaging channels</a>

Modified: websites/production/camel/content/siteindex.html
==============================================================================
--- websites/production/camel/content/siteindex.html (original)
+++ websites/production/camel/content/siteindex.html Tue May 13 15:23:23 2014
@@ -91,7 +91,7 @@
 
 <p>
 <table class="grid" width="99%" cellspacing="0"><tr><td colspan="2" rowspan="1">
-         <table width="100%"><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-0-9">0-9</a> ... 0</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-A">A</a> ... 31</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-B">B</a> ... 38</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-C">C</a> ... 153</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-D">D</a> ... 30</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-E">E</a> ... 29</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-F">F</a> ... 14</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-G">G</a> ... 25</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-H">H</a> ... 83</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-I">I</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-J">J</a> ... 27</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-K">K</a> ... 3</td></tr><tr><td colspan="1" row
 span="1"><a shape="rect" href="#index-L">L</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-M">M</a> ... 32</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-N">N</a> ... 9</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-O">O</a> ... 6</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-P">P</a> ... 24</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-Q">Q</a> ... 5</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-R">R</a> ... 30</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-S">S</a> ... 77</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-T">T</a> ... 42</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-U">U</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-V">V</a> ... 8</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-W">W</a> ... 30</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-X">X</a> ... 13</td><
 td colspan="1" rowspan="1"><a shape="rect" href="#index-Y">Y</a> ... 1</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-Z">Z</a> ... 4</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-%21@%23%24">!@#$</a> ... 0</td><td colspan="1" rowspan="1">&#160;</td><td colspan="1" rowspan="1">&#160;</td></tr></table>
+         <table width="100%"><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-0-9">0-9</a> ... 0</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-A">A</a> ... 31</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-B">B</a> ... 38</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-C">C</a> ... 154</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-D">D</a> ... 30</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-E">E</a> ... 29</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-F">F</a> ... 14</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-G">G</a> ... 25</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-H">H</a> ... 83</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-I">I</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-J">J</a> ... 27</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-K">K</a> ... 3</td></tr><tr><td colspan="1" row
 span="1"><a shape="rect" href="#index-L">L</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-M">M</a> ... 32</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-N">N</a> ... 9</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-O">O</a> ... 6</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-P">P</a> ... 24</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-Q">Q</a> ... 5</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-R">R</a> ... 30</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-S">S</a> ... 77</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-T">T</a> ... 42</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-U">U</a> ... 17</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-V">V</a> ... 8</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-W">W</a> ... 30</td></tr><tr><td colspan="1" rowspan="1"><a shape="rect" href="#index-X">X</a> ... 13</td><
 td colspan="1" rowspan="1"><a shape="rect" href="#index-Y">Y</a> ... 1</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-Z">Z</a> ... 4</td><td colspan="1" rowspan="1"><a shape="rect" href="#index-%21@%23%24">!@#$</a> ... 0</td><td colspan="1" rowspan="1">&#160;</td><td colspan="1" rowspan="1">&#160;</td></tr></table>
         </td></tr><tr valign="top"><td colspan="1" rowspan="1"><h4 style="margin-top: 0px"><a shape="rect" name="index-0-9"></a>0-9</h4>
         </td><td colspan="1" rowspan="1"><h4 style="margin-top: 0px"><a shape="rect" name="index-A"></a>A</h4>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="acknowledgment.html">Acknowledgment</a>
@@ -417,6 +417,9 @@
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="camel-2130-release.html">Camel 2.13.0 Release</a>
         <br clear="none">
              <div class="smalltext" style="margin: 0 0 0 36px">Camel 2.13.0 release&#160; {div:style=padding-right:20px;float:left;margin-left:-20px;} !http://camel.apache.org/download.data/camel-box-v1.0-150x200.png! {div}{div:style=min-height:200px} {div} New and Noteworthy Welcome to the 2.13.0 release which approx 480</div>
+                             <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="camel-2131-release.html">Camel 2.13.1 Release</a>
+        <br clear="none">
+             <div class="smalltext" style="margin: 0 0 0 36px">Camel 2.12.3 release {div:style=padding-right:20px;float:left;margin-left:-20px;} !http://camel.apache.org/download.data/camel-box-v1.0-150x200.png! {div}{div:style=min-height:200px} {div} New and Noteworthy Welcome to the 2.13.1 release which is mainly a</div>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="camel-2140-release.html">Camel 2.14.0 Release</a>
         <br clear="none">
              <div class="smalltext" style="margin: 0 0 0 36px">Camel 2.14.0 release (currently in progress) {div:style=padding-right:20px;float:left;margin-left:-20px;} !http://camel.apache.org/download.data/camel-box-v1.0-150x200.png! {div}{div:style=min-height:200px} {div} New and Noteworthy Welcome to the 2.14.0 r</div>
@@ -831,7 +834,7 @@
              <div class="smalltext" style="margin: 0 0 0 36px">Does Camel work on IBM's JDK? Yes, we've tested Camel with IBM's JDK on the AIX and Linux platforms. There are a few things to look out for though Exception using camel-http You may get a sun.io.MalformedInputException when using camel-http on IBM's JDK. </div>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="download.html">Download</a>
         <br clear="none">
-             <div class="smalltext" style="margin: 0 0 0 36px">Latest Releases {div:style=padding-right:20px;float:left;} !http://camel.apache.org/images/camel-box-small.png! {div}{div:style=min-height:200px} Grab these releases while they are hot! * The latest release for Camel 2.13.x is [Camel 2.13.0 Release]. * Th</div>
+             <div class="smalltext" style="margin: 0 0 0 36px">Latest Releases {div:style=padding-right:20px;float:left;} !http://camel.apache.org/images/camel-box-small.png! {div}{div:style=min-height:200px} Grab these releases while they are hot! * The latest release for Camel 2.13.x is [Camel 2.13.1 Release]. * Th</div>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="download-archives.html">Download Archives</a>
         <br clear="none">
              <div class="smalltext" style="margin: 0 0 0 36px">Download archives You can use the Apache Archives to download all the Camel releases. http://archive.apache.org/dist/camel/apache-camel/ - All release since Camel became a top level Apache project http://archive.apache.org/dist/activemq/apache-camel/ - Fo</div>
@@ -2363,7 +2366,7 @@
              <div class="smalltext" style="margin: 0 0 0 36px">Xml Configuration We recommend developers use the Java Domain Specific Language when writing routing rules as this provides maximum IDE completion and functionality while being the most expressive. However if you wish to put your routing rules in XML you </div>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="xml-reference.html">Xml Reference</a>
         <br clear="none">
-             <div class="smalltext" style="margin: 0 0 0 36px">Camel Xml Reference This page contains a link to the XML schema documents for Xml Configuration with Camel releases. You can refer to http://camel.apache.org/schema/ to see the individual XSDs available. Released Schemas - Spring Version XML Schema 2.12.3</div>
+             <div class="smalltext" style="margin: 0 0 0 36px">Camel Xml Reference This page contains a link to the XML schema documents for Xml Configuration with Camel releases. You can refer to http://camel.apache.org/schema/ to see the individual XSDs available. Released Schemas - Spring Version XML Schema 2.13.1</div>
                              <span class="icon icon-page" title="Page">Page:</span>                 <a shape="rect" href="xml-security-component.html">XML Security component</a>
         <br clear="none">
              <div class="smalltext" style="margin: 0 0 0 36px">XML Security component Available as of Camel 2.12.0 With this Apache Camel component, you can generate and validate XML signatures as described in the W3C standard XML Signature Syntax and Processing or as described in the successor version 1.1. For XML E</div>