Modified: 
websites/production/camel/content/configuring-route-startup-ordering-and-autostartup.html
==============================================================================
--- 
websites/production/camel/content/configuring-route-startup-ordering-and-autostartup.html
 (original)
+++ 
websites/production/camel/content/configuring-route-startup-ordering-and-autostartup.html
 Thu Sep 14 19:25:46 2017
@@ -97,7 +97,7 @@
 
 <p>For example the route below we have configured 
<strong>autoStartup=false</strong> to prevent Camel starting when Spring 
starts.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
     &lt;camelContext id=&quot;myCamel&quot; 
xmlns=&quot;http://camel.apache.org/schema/spring&quot; 
autoStartup=&quot;false&quot;&gt;
         &lt;route&gt;
             &lt;from uri=&quot;direct:start&quot;/&gt;
@@ -127,7 +127,7 @@
 
 <p>In XML DSL you define it as follows:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;route autoStartup=&quot;false&quot;&gt;
    &lt;from uri=&quot;activemq:queue:special&quot;/&gt;
    &lt;to uri=&quot;file://backup&quot;/&gt;
@@ -137,7 +137,7 @@
 
 <p>And to explicit state it should be started</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;route autoStartup=&quot;true&quot;&gt;
    &lt;from uri=&quot;activemq:queue:special&quot;/&gt;
    &lt;to uri=&quot;file://backup&quot;/&gt;
@@ -198,7 +198,7 @@ You should also use numbers that are low
 
 <p>And the same example with XML DSL:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
     &lt;route startupOrder=&quot;1&quot;&gt;
         &lt;from uri=&quot;seda:foo&quot;/&gt;
         &lt;to uri=&quot;mock:result&quot;/&gt;
@@ -228,7 +228,7 @@ As <code>direct:start</code> is consider
 
 <p>And the same example with XML DSL:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
     &lt;route startupOrder=&quot;1&quot;&gt;
         &lt;from uri=&quot;seda:foo&quot;/&gt;
         &lt;to uri=&quot;mock:result&quot;/&gt;

Modified: websites/production/camel/content/consul-component.html
==============================================================================
--- websites/production/camel/content/consul-component.html (original)
+++ websites/production/camel/content/consul-component.html Thu Sep 14 19:25:46 
2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><p><a shape="rect" class="external-link" 
href="https://www.consul.io/"; rel="nofollow">Consul</a>&#160;<span 
style="color: rgb(0,0,0);">&#160;is a distributed, highly available, 
datacenter-aware, service discovery and configuration 
system.</span></p><p>Maven users will need to add the following dependency to 
their&#160;<code>pom.xml</code>&#160;for this component.</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-consul&lt;/artifactId&gt;
     &lt;!-- use the same version as your Camel core version --&gt;

Modified: websites/production/camel/content/content-based-routing-on-camel.html
==============================================================================
--- websites/production/camel/content/content-based-routing-on-camel.html 
(original)
+++ websites/production/camel/content/content-based-routing-on-camel.html Thu 
Sep 14 19:25:46 2017
@@ -124,7 +124,7 @@ public class ValidatingProcessor impleme
 <p>We can register the processor in the spring context in two steps.</p>
 <ul><li>Add a component-scan package in the applicationContext.xml. Spring 
will scan the package for service registry when starting.
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;!-- configure the spring component scan package --&gt;
 &lt;context:component-scan 
base-package=&quot;org.apache.camel.web.example&quot;/&gt;
 ]]></script>
@@ -169,7 +169,7 @@ from(&quot;file:src/data?noop=true&quot;
 
 <p>Now a expired date can be specified in the message, so the validating 
processor can filter the expired messages. You can add message files with 
content:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;person user=&quot;xueqiang&quot;&gt;
   &lt;expiredDate&gt;9-1-2009&lt;/expiredDate&gt;
   &lt;firstName&gt;Xueqiang&lt;/firstName&gt;

Modified: websites/production/camel/content/context.html
==============================================================================
--- websites/production/camel/content/context.html (original)
+++ websites/production/camel/content/context.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Context-ContextComponent">Context Component</h2><p><strong>Available as of 
Camel 2.7</strong></p><div class="confluence-information-macro 
confluence-information-macro-warning"><span class="aui-icon aui-icon-small 
aui-iconfont-error confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>Deprecated do NOT 
use</p></div></div><p>&#160;</p><p>The <strong>context</strong> component 
allows you to create new Camel Components from a CamelContext with a number of 
routes which is then treated as a black box, allowing you to refer to the local 
endpoints within the component from other CamelContexts.</p><p>It is similar to 
the <a shape="rect" href="routebox.html">Routebox</a> component in idea, though 
the Context component tries to be really simple for end users; just a simple 
convention over configuration approach to refer to local endpoints inside the 
CamelContext Component.</p><p>Maven users will need to add th
 e following dependency to their <code>pom.xml</code> for this 
component:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-context&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;
@@ -118,7 +118,7 @@ blackBox.start();
 registry.bind(&quot;accounts&quot;, blackBox);
 ]]></script>
 </div></div><p>Notice in the above route we are using pure local endpoints 
(<strong>direct</strong> and <strong>seda</strong>). Also note we expose this 
CamelContext using the <strong>accounts</strong> ID. We can do the same thing 
in Spring via</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;camelContext id=&quot;accounts&quot; 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;camelContext id=&quot;accounts&quot; 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
   &lt;route&gt; 
     &lt;from uri=&quot;direct:purchaseOrder&quot;/&gt;
     ...
@@ -127,7 +127,7 @@ registry.bind(&quot;accounts&quot;, blac
 &lt;/camelContext&gt;
 ]]></script>
 </div></div><h4 id="Context-Usingthecontextcomponent">Using the context 
component</h4><p>Then in another CamelContext we can then refer to this 
"accounts black box" by just sending to <strong>accounts:purchaseOrder</strong> 
and consuming from <strong>accounts:invoice</strong>.</p><p>If you prefer to be 
more verbose and explicit you could use 
<strong>context:accounts:purchaseOrder</strong> or even 
<strong>context:accounts:direct://purchaseOrder</strong> if you prefer. But 
using logical endpoint URIs is preferred as it hides the implementation detail 
and provides a simple logical naming scheme.</p><p>For example if we wish to 
then expose this accounts black box on some middleware (outside of the black 
box) we can do things like...</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;camelContext 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;camelContext 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
   &lt;route&gt; 
     &lt;!-- consume from an ActiveMQ into the black box --&gt;
     &lt;from uri=&quot;activemq:Accounts.PurchaseOrders&quot;/&gt;

Modified: websites/production/camel/content/couchbase.html
==============================================================================
--- websites/production/camel/content/couchbase.html (original)
+++ websites/production/camel/content/couchbase.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><p><strong>Available as of Camel Extra 
2.13</strong></p><p>The camel-couchbase component supports the interaction to 
the NoSQL document database <a shape="rect" class="external-link" 
href="http://www.couchbase.com"; rel="nofollow">Couchbase</a> via the <a 
shape="rect" class="external-link" 
href="http://www.couchbase.com/communities/java/getting-started"; 
rel="nofollow">couchbase-client</a> library.&#160;<a shape="rect" 
class="external-link" href="http://www.couchbase.com"; rel="nofollow" 
style="text-decoration: underline;">Couchbase</a><span style="line-height: 
1.4285715;">&#160;is an high performance Document Store very easy to scale out, 
which supports topology changes with no downtime</span></p><h3 
id="Couchbase-Dependency">Dependency</h3><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
   &lt;groupId&gt;org.apache-extras.camel-extra&lt;/groupId&gt;
   &lt;artifactId&gt;camel-couchbase&lt;/artifactId&gt;
   &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/couchdb.html
==============================================================================
--- websites/production/camel/content/couchdb.html (original)
+++ websites/production/camel/content/couchdb.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="CouchDB-CamelCouchDBcomponent">Camel CouchDB 
component</h2><p><strong>Available as of Camel 2.11</strong></p><p>The 
<strong>couchdb:</strong> component allows you to treat <a shape="rect" 
class="external-link" href="http://couchdb.apache.org/";>CouchDB</a> instances 
as a producer or consumer of messages. Using the lightweight LightCouch API, 
this camel component has the following features:</p><ul><li>As a consumer, 
monitors couch changesets for inserts, updates and deletes and publishes these 
as messages into camel routes.</li><li>As a producer, can save, update and from 
<strong>Camel 2.18</strong>&#160; delete (by using <span>CouchDbMethod with 
DELETE value)</span>&#160;documents into couch.</li><li>Can support as many 
endpoints as required, eg for multiple databases across multiple 
instances.</li><li>Ability to have events trigger for only deletes, only 
inserts/updates or all (default).</li><li>Headers set for sequenceId, document 
revis
 ion, document id, and HTTP method type.</li></ul><p>Maven users will need to 
add the following dependency to their <code>pom.xml</code> for this 
component:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-couchdb&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/cronscheduledroutepolicy.html
==============================================================================
--- websites/production/camel/content/cronscheduledroutepolicy.html (original)
+++ websites/production/camel/content/cronscheduledroutepolicy.html Thu Sep 14 
19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="CronScheduledRoutePolicy-CronScheduledRoutePolicy">CronScheduledRoutePolicy</h2><p><strong>Available
 as of Camel version 2.6</strong></p><p>CronScheduledRoutePolicy is a <a 
shape="rect" href="scheduledroutepolicy.html">ScheduledRoutePolicy</a> that 
facilitates route activation, de-activation, suspension and resumption of 
routes based on a <a shape="rect" href="quartz.html">Quartz</a> 
<code>CronTrigger</code>.</p><p>Maven users will need to add a camel-quartz 
dependency to their <code>pom.xml</code> to avail this capability.</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-quartz&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;
@@ -94,7 +94,7 @@
 &lt;/dependency&gt;
 ]]></script>
 </div></div><div class="confluence-information-macro 
confluence-information-macro-tip"><p class="title">Relationship to the [Quartz] 
component</p><span class="aui-icon aui-icon-small aui-iconfont-approve 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>All Scheduled route policies share 
the scheduler created by the Quartz component. In this way, scheduler, jobs and 
triggers can be managed in a common and consistent way.</p></div></div><div 
class="confluence-information-macro confluence-information-macro-tip"><p 
class="title">Relationship to the [Quartz2] component</p><span class="aui-icon 
aui-icon-small aui-iconfont-approve 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>From Camel 2.12.2 onwards you can 
also make use of the <a shape="rect" href="quartz2.html">Quartz2</a> based 
implementation of this route policy.</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent pa
 nelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;myStartPolicy&quot; 
class=&quot;org.apache.camel.routepolicy.quartz2.CronScheduledRoutePolicy&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;myStartPolicy&quot; 
class=&quot;org.apache.camel.routepolicy.quartz2.CronScheduledRoutePolicy&quot;&gt;
   &lt;!-- start every 5min from monday to saturday --&gt;
   &lt;property name=&quot;routeStartTime&quot; value=&quot;0 0/5 * ? * 1-6 
*&quot; /&gt;
 &lt;/bean&gt;
@@ -109,7 +109,7 @@ from(&quot;direct:start&quot;)
     .to(&quot;mock:success&quot;);
 ]]></script>
 </div></div><ul><li>Using Spring</li></ul><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;startPolicy&quot; 
class=&quot;org.apache.camel.routepolicy.quartz.CronScheduledRoutePolicy&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;startPolicy&quot; 
class=&quot;org.apache.camel.routepolicy.quartz.CronScheduledRoutePolicy&quot;&gt;
     &lt;property name=&quot;routeStartTime&quot; value=&quot;*/3 * * * * 
?&quot;/&gt;
 &lt;/bean&gt;
     

Modified: websites/production/camel/content/csv.html
==============================================================================
--- websites/production/camel/content/csv.html (original)
+++ websites/production/camel/content/csv.html Thu Sep 14 19:25:46 2017
@@ -156,7 +156,7 @@ from(&quot;direct:start&quot;)
     .marshal(new CsvDataFormat().setDelimiter(&#39;|&#39;))
     .to(&quot;mock:result&quot;)]]></script>
 </div></div></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><span>or this XML route definition</span></td><td 
colspan="1" rowspan="1" class="confluenceTd"><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;direct:start&quot; /&gt;
   &lt;marshal&gt;
     &lt;csv delimiter=&quot;|&quot; /&gt;
@@ -166,7 +166,7 @@ from(&quot;direct:start&quot;)
 </div></div></td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"><span>then it will produce</span></td><td colspan="1" 
rowspan="1" class="confluenceTd"><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <script class="brush: text; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[abc|123]]></script>
 </div></div></td></tr></tbody></table></div><h3 
id="CSV-UsingautogenColumns,configRefandstrategyRefattributesinsideXMLDSL">Using
 autogenColumns, configRef and strategyRef attributes inside XML 
DSL</h3><p><strong>Available as of Camel 2.9.2 / 2.10 and deleted for Camel 
2.15</strong></p><p>You can customize the CSV <a shape="rect" 
href="data-format.html">Data Format</a> to make use of your own 
<code>CSVConfig</code> and/or <code>CSVStrategy</code>. Also note that the 
default value of the <code>autogenColumns</code> option is true. The following 
example should illustrate this customization.</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;direct:start&quot; /&gt;
   &lt;marshal&gt;
     &lt;!-- make use of a strategy other than the default one which is 
&#39;org.apache.commons.csv.CSVStrategy.DEFAULT_STRATEGY&#39; --&gt;
@@ -194,7 +194,7 @@ from(&quot;direct:start&quot;)
 &lt;/bean&gt;
 ]]></script>
 </div></div><h3 id="CSV-UsingskipFirstLineoptionwhileunmarshaling">Using 
skipFirstLine option while unmarshaling</h3><p><strong>Available as of Camel 
2.10 and deleted for Camel 2.15</strong></p><p>You can instruct the CSV <a 
shape="rect" href="data-format.html">Data Format</a> to skip the first line 
which contains the CSV headers. Using the Spring/XML DSL:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;direct:start&quot; /&gt;
   &lt;unmarshal&gt;
     &lt;csv skipFirstLine=&quot;true&quot; /&gt;
@@ -211,7 +211,7 @@ from(&quot;direct:start&quot;)
 .to(&quot;bean:myCsvHandler?method=doHandleCsv&quot;);
 ]]></script>
 </div></div><h3 id="CSV-Unmarshalingwithapipeasdelimiter">Unmarshaling with a 
pipe as delimiter</h3><p>Using the Spring/XML DSL:</p><div class="code panel 
pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;direct:start&quot; /&gt;
   &lt;unmarshal&gt;
     &lt;csv delimiter=&quot;|&quot; /&gt;

Modified: websites/production/camel/content/custom-dataformat.html
==============================================================================
--- websites/production/camel/content/custom-dataformat.html (original)
+++ websites/production/camel/content/custom-dataformat.html Thu Sep 14 
19:25:46 2017
@@ -179,7 +179,7 @@ from(&quot;direct:a&quot;)
 
 <p>Notice in the XML DSL example above we use &lt;custom&gt; to refer to a 
custom data format. This requires <strong>Camel 2.8</strong> or better. In 
older releases you would have to use the <code>ref</code> attribute as shown 
below. Notice the <code>ref</code> attribute has been @deprecated and you 
should prefer to use the &lt;custom&gt; way:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
  &lt;marshal ref=&quot;reverse&quot;/&gt;
 ]]></script>
 </div></div>

Modified: websites/production/camel/content/cxf-example-osgi-blueprint.html
==============================================================================
--- websites/production/camel/content/cxf-example-osgi-blueprint.html (original)
+++ websites/production/camel/content/cxf-example-osgi-blueprint.html Thu Sep 
14 19:25:46 2017
@@ -112,7 +112,7 @@
 <script class="brush: text; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[  
http://localhost:8181/cxf/camel-example-cxf-blueprint/webservices/incident?wsdl
   ]]></script>
 </div></div><p>5) Start SOAPUI or use curl to send the request<br 
clear="none"> Create a new project called camel-example-cxf-osgi<br 
clear="none"> Point to the following url: <a shape="rect" class="external-link" 
href="http://localhost:8181/cxf/camel-example-cxf-blueprint/webservices/incident?wsdl";
 
rel="nofollow">http://localhost:8181/cxf/camel-example-cxf-blueprint/webservices/incident?wsdl</a><br
 clear="none"> Open the request 1 (under camel-example-cxf-blueprint --&gt; 
ReportIncidentBinding --&gt; ReportIncident) and copy/paste a SOAP<br 
clear="none"> message generated by the unit test, for example:</p><p>ex :<br 
clear="none"> --&gt; and the message formatted that you copy in SOAPUI</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   
    &lt;xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
    &lt;soap:Envelope 
xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;
       &lt;soap:Header /&gt;

Modified: websites/production/camel/content/cxf-example-osgi.html
==============================================================================
--- websites/production/camel/content/cxf-example-osgi.html (original)
+++ websites/production/camel/content/cxf-example-osgi.html Thu Sep 14 19:25:46 
2017
@@ -111,7 +111,7 @@
 <script class="brush: text; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[  
http://localhost:8181/cxf/camel-example-cxf-osgi/webservices/incident?wsdl
   ]]></script>
 </div></div><p>5) Start SOAPUI or use curl to send the request<br 
clear="none"> Create a new project called camel-example-cxf-osgi<br 
clear="none"> Point to the following url: <a shape="rect" class="external-link" 
href="http://localhost:8181/cxf/camel-example-cxf-osgi/webservices/incident?wsdl";
 
rel="nofollow">http://localhost:8181/cxf/camel-example-cxf-osgi/webservices/incident?wsdl</a><br
 clear="none"> Open the request 1 (under camel-example-cxf-osgi --&gt; 
ReportIncidentBinding --&gt; ReportIncident) and copy/paste a SOAP<br 
clear="none"> message generated by the unit test, for example:</p><p>--&gt; and 
the message formatted that you copy in SOAPUI and send the message</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   
    &lt;soap:Envelope 
xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;
       &lt;soap:Header /&gt;
       &lt;soap:Body&gt;

Modified: websites/production/camel/content/dataformat-component.html
==============================================================================
--- websites/production/camel/content/dataformat-component.html (original)
+++ websites/production/camel/content/dataformat-component.html Thu Sep 14 
19:25:46 2017
@@ -115,7 +115,7 @@ from(&quot;activemq:My.Queue&quot;).
 
 <p>And in XML DSL you do:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;camelContext id=&quot;camel&quot; 
xmlns=&quot;http://camel.apache.org/schema/spring&quot;&gt;
   &lt;route&gt;
     &lt;from uri=&quot;activemq:My.Queue&quot;/&gt;

Modified: websites/production/camel/content/dataset.html
==============================================================================
--- websites/production/camel/content/dataset.html (original)
+++ websites/production/camel/content/dataset.html Thu Sep 14 19:25:46 2017
@@ -92,7 +92,7 @@
 
 
 <p>You can append query options to the URI in the following format: 
<strong><code>?option=value&amp;option=value&amp;...</code></strong></p><h3 
id="DataSet-ConfiguringDataSet">Configuring DataSet</h3><p>Camel will lookup in 
the <a shape="rect" href="registry.html">Registry</a> for a bean implementing 
the&#160;<strong><code>DataSet</code></strong> interface. So you can register 
your own&#160;<strong><code>DataSet</code></strong> as:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;myDataSet&quot; 
class=&quot;com.mycompany.MyDataSet&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;myDataSet&quot; 
class=&quot;com.mycompany.MyDataSet&quot;&gt;
   &lt;property name=&quot;size&quot; value=&quot;100&quot;/&gt;
 &lt;/bean&gt;
 ]]></script>

Modified: websites/production/camel/content/delay-interceptor.html
==============================================================================
--- websites/production/camel/content/delay-interceptor.html (original)
+++ websites/production/camel/content/delay-interceptor.html Thu Sep 14 
19:25:46 2017
@@ -98,7 +98,7 @@
 <h3 id="DelayInterceptor-ConfiguringusingSpring">Configuring using Spring</h3>
 <p>Just set the delay attribute of the camelContext tag as shown below:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
     &lt;camelContext id=&quot;camel&quot; delayer=&quot;500&quot; 
xmlns=&quot;http://activemq.apache.org/camel/schema/spring&quot;&gt;
         &lt;route&gt;
             &lt;from uri=&quot;direct:start&quot;/&gt;

Modified: websites/production/camel/content/direct-vm.html
==============================================================================
--- websites/production/camel/content/direct-vm.html (original)
+++ websites/production/camel/content/direct-vm.html Thu Sep 14 19:25:46 2017
@@ -102,7 +102,7 @@
     .to(&quot;activemq:queue:order.out&quot;);
 ]]></script>
 </div></div><p>And the sample using spring DSL:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   &lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[   &lt;route&gt;
      &lt;from uri=&quot;activemq:queue:order.in&quot;/&gt;
      &lt;to uri=&quot;bean:orderService?method=validate&quot;/&gt;
      &lt;to uri=&quot;direct-vm:processOrder&quot;/&gt;

Modified: websites/production/camel/content/dns.html
==============================================================================
--- websites/production/camel/content/dns.html (original)
+++ websites/production/camel/content/dns.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="DNS-DNS">DNS</h2><p><strong>Available as of Camel 2.7</strong></p><p>This 
is an additional component for Camel to run DNS queries, using DNSJava. The 
component is a thin layer on top of <a shape="rect" class="external-link" 
href="http://www.xbill.org/dnsjava/"; rel="nofollow">DNSJava</a>.<br 
clear="none"> The component offers the following operations:</p><ul 
class="alternate"><li>ip, to resolve a domain by its ip</li><li>lookup, to 
lookup information about the domain</li><li>dig, to run DNS 
queries</li></ul><div class="confluence-information-macro 
confluence-information-macro-information"><p class="title">Requires SUN 
JVM</p><span class="aui-icon aui-icon-small aui-iconfont-info 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>The DNSJava library requires 
running on the SUN JVM.<br clear="none"> If you use Apache ServiceMix or Apache 
Karaf, you'll need to adjust the <code>etc/jre.properties</code
 > file, to add <code>sun.net.spi.nameservice</code> to the list of Java 
 > platform packages exported. The server will need restarting before this 
 > change takes effect.</p></div></div><p>Maven users will need to add the 
 > following dependency to their <code>pom.xml</code> for this 
 > component:</p><div class="code panel pdl" style="border-width: 1px;"><div 
 > class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-dns&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;
@@ -100,19 +100,19 @@
 
 
 <h3 id="DNS-Examples">Examples</h3><h4 id="DNS-IPlookup">IP lookup</h4><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
             &lt;from uri=&quot;direct:start&quot;/&gt;
             &lt;to uri=&quot;dns:ip&quot;/&gt;
         &lt;/route&gt;
 ]]></script>
 </div></div><p>This looks up a domain's IP. For example, www.example.com 
resolves to 192.0.32.10.<br clear="none"> The IP address to lookup must be 
provided in the header with key <code>"dns.domain"</code>.</p><h4 
id="DNS-DNSlookup">DNS lookup</h4><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
             &lt;from uri=&quot;direct:start&quot;/&gt;
             &lt;to uri=&quot;dns:lookup&quot;/&gt;
         &lt;/route&gt;
 ]]></script>
 </div></div><p>This returns a set of DNS records associated with a domain.<br 
clear="none"> The name to lookup must be provided in the header with key 
<code>"dns.name"</code>.</p><h4 id="DNS-DNSDig">DNS Dig</h4><p>Dig is a Unix 
command-line utility to run DNS queries.</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[        &lt;route id=&quot;IPCheck&quot;&gt;
             &lt;from uri=&quot;direct:start&quot;/&gt;
             &lt;to uri=&quot;dns:dig&quot;/&gt;
         &lt;/route&gt;

Modified: websites/production/camel/content/docker.html
==============================================================================
--- websites/production/camel/content/docker.html (original)
+++ websites/production/camel/content/docker.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Docker-CamelDockercomponent">Camel Docker 
component</h2><p><strong>Available as of Camel 2.15</strong></p><p>Camel 
component for communicating with Docker.</p><p>The Docker Camel component 
leverages the <a shape="rect" class="external-link" 
href="https://github.com/docker-java/docker-java"; 
rel="nofollow">docker-java</a>&#160;via the <a shape="rect" 
class="external-link" 
href="https://docs.docker.com/reference/api/docker_remote_api"; 
rel="nofollow">Docker Remote API</a>.</p><p><span style="line-height: 
1.4285715;">Maven users will need to add the following dependency to their 
</span><code style="line-height: 1.4285715;">pom.xml</code><span 
style="line-height: 1.4285715;"> for this component:</span></p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-docker&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/download-archives.html
==============================================================================
--- websites/production/camel/content/download-archives.html (original)
+++ websites/production/camel/content/download-archives.html Thu Sep 14 
19:25:46 2017
@@ -75,7 +75,7 @@
        <tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><h2 
id="DownloadArchives-Downloadarchives">Download archives</h2><p>You can use the 
Apache Archives to download all the Camel releases.</p><ul 
class="alternate"><li><a shape="rect" class="external-link" 
href="http://archive.apache.org/dist/camel/apache-camel/";>http://archive.apache.org/dist/camel/apache-camel/</a>
 - All release since Camel became a top level Apache project</li><li><a 
shape="rect" class="external-link" 
href="http://archive.apache.org/dist/activemq/apache-camel/";>http://archive.apache.org/dist/activemq/apache-camel/</a>
 - For old 1.x releases when the Camel project was a sub-project of Apache 
ActiveMQ</li></ul><div class="confluence-information-macro 
confluence-information-macro-information"><p class="title">Downloading</p><span 
class="aui-icon aui-icon-small aui-iconfont-info 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>The links below contains the 
release notes for all the Camel rel
 ease. However if you want to download the release, you <strong>must</strong> 
use the download archives, which is the two links above.</p></div></div><p>All 
time Apache Camel releases notes:</p><p></p><ul class="childpages-macro"><li><a 
shape="rect" href="camel-100-release.html">Camel 1.0.0 Release</a></li><li><a 
shape="rect" href="camel-110-release.html">Camel 1.1.0 Release</a></li><li><a 
shape="rect" href="camel-120-release.html">Camel 1.2.0 Release</a></li><li><a 
shape="rect" href="camel-130-release.html">Camel 1.3.0 Release</a></li><li><a 
shape="rect" href="camel-140-release.html">Camel 1.4.0 Release</a></li><li><a 
shape="rect" href="camel-150-release.html">Camel 1.5.0 Release</a></li><li><a 
shape="rect" href="camel-160-release.html">Camel 1.6.0 Release</a></li><li><a 
shape="rect" href="camel-161-release.html">Camel 1.6.1 Release</a></li><li><a 
shape="rect" href="camel-162-release.html">Camel 1.6.2 Release</a></li><li><a 
shape="rect" href="camel-163-release.html">Camel 1.6.3 Rele
 ase</a></li><li><a shape="rect" href="camel-164-release.html">Camel 1.6.4 
Release</a></li><li><a shape="rect" href="camel-200-release.html">Camel 2.0.0 
Release</a></li><li><a shape="rect" href="camel-20-m1-release.html">Camel 
2.0-M1 Release</a></li><li><a shape="rect" 
href="camel-20-m2-release.html">Camel 2.0-M2 Release</a></li><li><a 
shape="rect" href="camel-20-m3-release.html">Camel 2.0-M3 
Release</a></li><li><a shape="rect" href="camel-210-release.html">Camel 2.1.0 
Release</a></li><li><a shape="rect" href="camel-220-release.html">Camel 2.2.0 
Release</a></li><li><a shape="rect" href="camel-230-release.html">Camel 2.3.0 
Release</a></li><li><a shape="rect" href="camel-240-release.html">Camel 2.4.0 
Release</a></li><li><a shape="rect" href="camel-250-release.html">Camel 2.5.0 
Release</a></li><li><a shape="rect" href="camel-260-release.html">Camel 2.6.0 
Release</a></li><li><a shape="rect" href="camel-270-release.html">Camel 2.7.0 
Release</a></li><li><a shape="rect" href="camel-271-rele
 ase.html">Camel 2.7.1 Release</a></li><li><a shape="rect" 
href="camel-272-release.html">Camel 2.7.2 Release</a></li><li><a shape="rect" 
href="camel-273-release.html">Camel 2.7.3 Release</a></li><li><a shape="rect" 
href="camel-274-release.html">Camel 2.7.4 Release</a></li><li><a shape="rect" 
href="camel-275-release.html">Camel 2.7.5 Release</a></li><li><a shape="rect" 
href="camel-280-release.html">Camel 2.8.0 Release</a></li><li><a shape="rect" 
href="camel-281-release.html">Camel 2.8.1 Release</a></li><li><a shape="rect" 
href="camel-282-release.html">Camel 2.8.2 Release</a></li><li><a shape="rect" 
href="camel-283-release.html">Camel 2.8.3 Release</a></li><li><a shape="rect" 
href="camel-284-release.html">Camel 2.8.4 Release</a></li><li><a shape="rect" 
href="camel-285-release.html">Camel 2.8.5 Release</a></li><li><a shape="rect" 
href="camel-286-release.html">Camel 2.8.6 Release</a></li><li><a shape="rect" 
href="camel-290-release.html">Camel 2.9.0 Release</a></li><li><a shape="rect" 
hre
 f="camel-291-release.html">Camel 2.9.1 Release</a></li><li><a shape="rect" 
href="camel-292-release.html">Camel 2.9.2 Release</a></li><li><a shape="rect" 
href="camel-293-release.html">Camel 2.9.3 Release</a></li><li><a shape="rect" 
href="camel-294-release.html">Camel 2.9.4 Release</a></li><li><a shape="rect" 
href="camel-295-release.html">Camel 2.9.5 Release</a></li><li><a shape="rect" 
href="camel-296-release.html">Camel 2.9.6 Release</a></li><li><a shape="rect" 
href="camel-297-release.html">Camel 2.9.7 Release</a></li><li><a shape="rect" 
href="camel-298-release.html">Camel 2.9.8 Release</a></li><li><a shape="rect" 
href="camel-2100-release.html">Camel 2.10.0 Release</a></li><li><a shape="rect" 
href="camel-2101-release.html">Camel 2.10.1 Release</a></li><li><a shape="rect" 
href="camel-2102-release.html">Camel 2.10.2 Release</a></li><li><a shape="rect" 
href="camel-2103-release.html">Camel 2.10.3 Release</a></li><li><a shape="rect" 
href="camel-2104-release.html">Camel 2.10.4 Release</a><
 /li><li><a shape="rect" href="camel-2105-release.html">Camel 2.10.5 
Release</a></li><li><a shape="rect" href="camel-2106-release.html">Camel 2.10.6 
Release</a></li><li><a shape="rect" href="camel-2107-release.html">Camel 2.10.7 
Release</a></li><li><a shape="rect" href="camel-2110-release.html">Camel 2.11.0 
Release</a></li><li><a shape="rect" href="camel-2111-release.html">Camel 2.11.1 
Release</a></li><li><a shape="rect" href="camel-2112-release.html">Camel 2.11.2 
release</a></li><li><a shape="rect" href="camel-2113-release.html">Camel 2.11.3 
release</a></li><li><a shape="rect" href="camel-2114-release.html">Camel 2.11.4 
Release</a></li><li><a shape="rect" href="camel-2120-release.html">Camel 2.12.0 
Release</a></li><li><a shape="rect" href="camel-2121-release.html">Camel 2.12.1 
Release</a></li><li><a shape="rect" href="camel-2122-release.html">Camel 2.12.2 
Release</a></li><li><a shape="rect" href="camel-2123-release.html">Camel 2.12.3 
Release</a></li><li><a shape="rect" href="camel-2
 124-release.html">Camel 2.12.4 Release</a></li><li><a shape="rect" 
href="camel-2125-release.html">Camel 2.12.5 Release</a></li><li><a shape="rect" 
href="camel-2130-release.html">Camel 2.13.0 Release</a></li><li><a shape="rect" 
href="camel-2131-release.html">Camel 2.13.1 Release</a></li><li><a shape="rect" 
href="camel-2132-release.html">Camel 2.13.2 Release</a></li><li><a shape="rect" 
href="camel-2133-release.html">Camel 2.13.3 Release</a></li><li><a shape="rect" 
href="camel-2134-release.html">Camel 2.13.4 Release</a></li><li><a shape="rect" 
href="camel-2140-release.html">Camel 2.14.0 Release</a></li><li><a shape="rect" 
href="camel-2141-release.html">Camel 2.14.1 Release</a></li><li><a shape="rect" 
href="camel-2142-release.html">Camel 2.14.2 Release</a></li><li><a shape="rect" 
href="camel-2143-release.html">Camel 2.14.3 Release</a></li><li><a shape="rect" 
href="camel-2144-release.html">Camel 2.14.4 Release</a></li><li><a shape="rect" 
href="camel-2150-release.html">Camel 2.15.0 Releas
 e</a></li><li><a shape="rect" href="camel-2151-release.html">Camel 2.15.1 
Release</a></li><li><a shape="rect" href="camel-2152-release.html">Camel 2.15.2 
Release</a></li><li><a shape="rect" href="camel-2153-release.html">Camel 2.15.3 
Release</a></li><li><a shape="rect" href="camel-2154-release.html">Camel 2.15.4 
Release</a></li><li><a shape="rect" href="camel-2155-release.html">Camel 2.15.5 
Release</a></li><li><a shape="rect" href="camel-2156-release.html">Camel 2.15.6 
Release</a></li><li><a shape="rect" href="camel-2160-release.html">Camel 2.16.0 
Release</a></li><li><a shape="rect" href="camel-2161-release.html">Camel 2.16.1 
Release</a></li><li><a shape="rect" href="camel-2162-release.html">Camel 2.16.2 
Release</a></li><li><a shape="rect" href="camel-2163-release.html">Camel 2.16.3 
Release</a></li><li><a shape="rect" href="camel-2164-release.html">Camel 2.16.4 
Release</a></li><li><a shape="rect" href="camel-2170-release.html">Camel 2.17.0 
Release</a></li><li><a shape="rect" href="c
 amel-2171-release.html">Camel 2.17.1 Release</a></li><li><a shape="rect" 
href="camel-2172-release.html">Camel 2.17.2 Release</a></li><li><a shape="rect" 
href="camel-2173-release.html">Camel 2.17.3 Release</a></li><li><a shape="rect" 
href="camel-2174-release.html">Camel 2.17.4 Release</a></li><li><a shape="rect" 
href="camel-2175-release.html">Camel 2.17.5 Release</a></li><li><a shape="rect" 
href="camel-2176-release.html">Camel 2.17.6 Release</a></li><li><a shape="rect" 
href="camel-2177-release.html">Camel 2.17.7 Release</a></li><li><a shape="rect" 
href="camel-2180-release.html">Camel 2.18.0 Release</a></li><li><a shape="rect" 
href="camel-2181-release.html">Camel 2.18.1 Release</a></li><li><a shape="rect" 
href="camel-2182-release.html">Camel 2.18.2 Release</a></li><li><a shape="rect" 
href="camel-2183-release.html">Camel 2.18.3 Release</a></li><li><a shape="rect" 
href="camel-2184-release.html">Camel 2.18.4 Release</a></li><li><a shape="rect" 
href="camel-2190-release.html">Camel 2.19.0 
 Release</a></li><li><a shape="rect" href="camel-2191-release.html">Camel 
2.19.1 Release</a></li><li><a shape="rect" href="camel-2192-release.html">Camel 
2.19.2 Release</a></li><li><a shape="rect" 
href="download-archives.html">Download Archives</a></li></ul></div>
+<div class="wiki-content maincontent"><h2 
id="DownloadArchives-Downloadarchives">Download archives</h2><p>You can use the 
Apache Archives to download all the Camel releases.</p><ul 
class="alternate"><li><a shape="rect" class="external-link" 
href="http://archive.apache.org/dist/camel/apache-camel/";>http://archive.apache.org/dist/camel/apache-camel/</a>
 - All release since Camel became a top level Apache project</li><li><a 
shape="rect" class="external-link" 
href="http://archive.apache.org/dist/activemq/apache-camel/";>http://archive.apache.org/dist/activemq/apache-camel/</a>
 - For old 1.x releases when the Camel project was a sub-project of Apache 
ActiveMQ</li></ul><div class="confluence-information-macro 
confluence-information-macro-information"><p class="title">Downloading</p><span 
class="aui-icon aui-icon-small aui-iconfont-info 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body"><p>The links below contains the 
release notes for all the Camel rel
 ease. However if you want to download the release, you <strong>must</strong> 
use the download archives, which is the two links above.</p></div></div><p>All 
time Apache Camel releases notes:</p><p></p><ul class="childpages-macro"><li><a 
shape="rect" href="camel-100-release.html">Camel 1.0.0 Release</a></li><li><a 
shape="rect" href="camel-110-release.html">Camel 1.1.0 Release</a></li><li><a 
shape="rect" href="camel-120-release.html">Camel 1.2.0 Release</a></li><li><a 
shape="rect" href="camel-130-release.html">Camel 1.3.0 Release</a></li><li><a 
shape="rect" href="camel-140-release.html">Camel 1.4.0 Release</a></li><li><a 
shape="rect" href="camel-150-release.html">Camel 1.5.0 Release</a></li><li><a 
shape="rect" href="camel-160-release.html">Camel 1.6.0 Release</a></li><li><a 
shape="rect" href="camel-161-release.html">Camel 1.6.1 Release</a></li><li><a 
shape="rect" href="camel-162-release.html">Camel 1.6.2 Release</a></li><li><a 
shape="rect" href="camel-163-release.html">Camel 1.6.3 Rele
 ase</a></li><li><a shape="rect" href="camel-164-release.html">Camel 1.6.4 
Release</a></li><li><a shape="rect" href="camel-200-release.html">Camel 2.0.0 
Release</a></li><li><a shape="rect" href="camel-20-m1-release.html">Camel 
2.0-M1 Release</a></li><li><a shape="rect" 
href="camel-20-m2-release.html">Camel 2.0-M2 Release</a></li><li><a 
shape="rect" href="camel-20-m3-release.html">Camel 2.0-M3 
Release</a></li><li><a shape="rect" href="camel-210-release.html">Camel 2.1.0 
Release</a></li><li><a shape="rect" href="camel-220-release.html">Camel 2.2.0 
Release</a></li><li><a shape="rect" href="camel-230-release.html">Camel 2.3.0 
Release</a></li><li><a shape="rect" href="camel-240-release.html">Camel 2.4.0 
Release</a></li><li><a shape="rect" href="camel-250-release.html">Camel 2.5.0 
Release</a></li><li><a shape="rect" href="camel-260-release.html">Camel 2.6.0 
Release</a></li><li><a shape="rect" href="camel-270-release.html">Camel 2.7.0 
Release</a></li><li><a shape="rect" href="camel-271-rele
 ase.html">Camel 2.7.1 Release</a></li><li><a shape="rect" 
href="camel-272-release.html">Camel 2.7.2 Release</a></li><li><a shape="rect" 
href="camel-273-release.html">Camel 2.7.3 Release</a></li><li><a shape="rect" 
href="camel-274-release.html">Camel 2.7.4 Release</a></li><li><a shape="rect" 
href="camel-275-release.html">Camel 2.7.5 Release</a></li><li><a shape="rect" 
href="camel-280-release.html">Camel 2.8.0 Release</a></li><li><a shape="rect" 
href="camel-281-release.html">Camel 2.8.1 Release</a></li><li><a shape="rect" 
href="camel-282-release.html">Camel 2.8.2 Release</a></li><li><a shape="rect" 
href="camel-283-release.html">Camel 2.8.3 Release</a></li><li><a shape="rect" 
href="camel-284-release.html">Camel 2.8.4 Release</a></li><li><a shape="rect" 
href="camel-285-release.html">Camel 2.8.5 Release</a></li><li><a shape="rect" 
href="camel-286-release.html">Camel 2.8.6 Release</a></li><li><a shape="rect" 
href="camel-290-release.html">Camel 2.9.0 Release</a></li><li><a shape="rect" 
hre
 f="camel-291-release.html">Camel 2.9.1 Release</a></li><li><a shape="rect" 
href="camel-292-release.html">Camel 2.9.2 Release</a></li><li><a shape="rect" 
href="camel-293-release.html">Camel 2.9.3 Release</a></li><li><a shape="rect" 
href="camel-294-release.html">Camel 2.9.4 Release</a></li><li><a shape="rect" 
href="camel-295-release.html">Camel 2.9.5 Release</a></li><li><a shape="rect" 
href="camel-296-release.html">Camel 2.9.6 Release</a></li><li><a shape="rect" 
href="camel-297-release.html">Camel 2.9.7 Release</a></li><li><a shape="rect" 
href="camel-298-release.html">Camel 2.9.8 Release</a></li><li><a shape="rect" 
href="camel-2100-release.html">Camel 2.10.0 Release</a></li><li><a shape="rect" 
href="camel-2101-release.html">Camel 2.10.1 Release</a></li><li><a shape="rect" 
href="camel-2102-release.html">Camel 2.10.2 Release</a></li><li><a shape="rect" 
href="camel-2103-release.html">Camel 2.10.3 Release</a></li><li><a shape="rect" 
href="camel-2104-release.html">Camel 2.10.4 Release</a><
 /li><li><a shape="rect" href="camel-2105-release.html">Camel 2.10.5 
Release</a></li><li><a shape="rect" href="camel-2106-release.html">Camel 2.10.6 
Release</a></li><li><a shape="rect" href="camel-2107-release.html">Camel 2.10.7 
Release</a></li><li><a shape="rect" href="camel-2110-release.html">Camel 2.11.0 
Release</a></li><li><a shape="rect" href="camel-2111-release.html">Camel 2.11.1 
Release</a></li><li><a shape="rect" href="camel-2112-release.html">Camel 2.11.2 
release</a></li><li><a shape="rect" href="camel-2113-release.html">Camel 2.11.3 
release</a></li><li><a shape="rect" href="camel-2114-release.html">Camel 2.11.4 
Release</a></li><li><a shape="rect" href="camel-2120-release.html">Camel 2.12.0 
Release</a></li><li><a shape="rect" href="camel-2121-release.html">Camel 2.12.1 
Release</a></li><li><a shape="rect" href="camel-2122-release.html">Camel 2.12.2 
Release</a></li><li><a shape="rect" href="camel-2123-release.html">Camel 2.12.3 
Release</a></li><li><a shape="rect" href="camel-2
 124-release.html">Camel 2.12.4 Release</a></li><li><a shape="rect" 
href="camel-2125-release.html">Camel 2.12.5 Release</a></li><li><a shape="rect" 
href="camel-2130-release.html">Camel 2.13.0 Release</a></li><li><a shape="rect" 
href="camel-2131-release.html">Camel 2.13.1 Release</a></li><li><a shape="rect" 
href="camel-2132-release.html">Camel 2.13.2 Release</a></li><li><a shape="rect" 
href="camel-2133-release.html">Camel 2.13.3 Release</a></li><li><a shape="rect" 
href="camel-2134-release.html">Camel 2.13.4 Release</a></li><li><a shape="rect" 
href="camel-2140-release.html">Camel 2.14.0 Release</a></li><li><a shape="rect" 
href="camel-2141-release.html">Camel 2.14.1 Release</a></li><li><a shape="rect" 
href="camel-2142-release.html">Camel 2.14.2 Release</a></li><li><a shape="rect" 
href="camel-2143-release.html">Camel 2.14.3 Release</a></li><li><a shape="rect" 
href="camel-2144-release.html">Camel 2.14.4 Release</a></li><li><a shape="rect" 
href="camel-2150-release.html">Camel 2.15.0 Releas
 e</a></li><li><a shape="rect" href="camel-2151-release.html">Camel 2.15.1 
Release</a></li><li><a shape="rect" href="camel-2152-release.html">Camel 2.15.2 
Release</a></li><li><a shape="rect" href="camel-2153-release.html">Camel 2.15.3 
Release</a></li><li><a shape="rect" href="camel-2154-release.html">Camel 2.15.4 
Release</a></li><li><a shape="rect" href="camel-2155-release.html">Camel 2.15.5 
Release</a></li><li><a shape="rect" href="camel-2156-release.html">Camel 2.15.6 
Release</a></li><li><a shape="rect" href="camel-2160-release.html">Camel 2.16.0 
Release</a></li><li><a shape="rect" href="camel-2161-release.html">Camel 2.16.1 
Release</a></li><li><a shape="rect" href="camel-2162-release.html">Camel 2.16.2 
Release</a></li><li><a shape="rect" href="camel-2163-release.html">Camel 2.16.3 
Release</a></li><li><a shape="rect" href="camel-2164-release.html">Camel 2.16.4 
Release</a></li><li><a shape="rect" href="camel-2170-release.html">Camel 2.17.0 
Release</a></li><li><a shape="rect" href="c
 amel-2171-release.html">Camel 2.17.1 Release</a></li><li><a shape="rect" 
href="camel-2172-release.html">Camel 2.17.2 Release</a></li><li><a shape="rect" 
href="camel-2173-release.html">Camel 2.17.3 Release</a></li><li><a shape="rect" 
href="camel-2174-release.html">Camel 2.17.4 Release</a></li><li><a shape="rect" 
href="camel-2175-release.html">Camel 2.17.5 Release</a></li><li><a shape="rect" 
href="camel-2176-release.html">Camel 2.17.6 Release</a></li><li><a shape="rect" 
href="camel-2177-release.html">Camel 2.17.7 Release</a></li><li><a shape="rect" 
href="camel-2180-release.html">Camel 2.18.0 Release</a></li><li><a shape="rect" 
href="camel-2181-release.html">Camel 2.18.1 Release</a></li><li><a shape="rect" 
href="camel-2182-release.html">Camel 2.18.2 Release</a></li><li><a shape="rect" 
href="camel-2183-release.html">Camel 2.18.3 Release</a></li><li><a shape="rect" 
href="camel-2184-release.html">Camel 2.18.4 Release</a></li><li><a shape="rect" 
href="camel-2190-release.html">Camel 2.19.0 
 Release</a></li><li><a shape="rect" href="camel-2191-release.html">Camel 
2.19.1 Release</a></li><li><a shape="rect" href="camel-2192-release.html">Camel 
2.19.2 Release</a></li><li><a shape="rect" href="camel-2193-release.html">Camel 
2.19.3 Release</a></li><li><a shape="rect" 
href="download-archives.html">Download Archives</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">

Modified: websites/production/camel/content/dozer-type-conversion.html
==============================================================================
--- websites/production/camel/content/dozer-type-conversion.html (original)
+++ websites/production/camel/content/dozer-type-conversion.html Thu Sep 14 
19:25:46 2017
@@ -173,7 +173,7 @@ new DozerTypeConverterLoader(camelContex
 
 ]]></script>
 </div></div><h4 
id="DozerTypeConversion-ConfiguringinOSGiblueprint">Configuring in OSGi 
blueprint</h4><p><strong>Available as of Camel 2.12</strong></p><p>When using 
Dozer with OSGi Blueprint then its works better by configuring Dozer using the 
<code>org.apache.camel.converter.dozer.DozerBeanMapperConfiguration</code> 
instead of <code>org.dozer.DozerBeanMapper</code>, as shown below:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;dozerConverterLoader&quot; 
class=&quot;org.apache.camel.converter.dozer.DozerTypeConverterLoader&quot;&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;bean id=&quot;dozerConverterLoader&quot; 
class=&quot;org.apache.camel.converter.dozer.DozerTypeConverterLoader&quot;&gt;
   &lt;argument index=&quot;0&quot; ref=&quot;myCamel&quot;/&gt;
   &lt;argument index=&quot;1&quot; ref=&quot;mapper&quot;/&gt;
 &lt;/bean&gt;

Modified: websites/production/camel/content/dozer.html
==============================================================================
--- websites/production/camel/content/dozer.html (original)
+++ websites/production/camel/content/dozer.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Dozer-Dozer">Dozer</h2><p>The&#160;<strong>dozer:</strong>&#160;component 
provides the ability to map between Java beans using the <a shape="rect" 
class="external-link" 
href="http://camel.apache.org/dozer-type-conversion.html";>Dozer</a> mapping 
framework since <strong>Camel 2.15.0</strong>. &#160;Camel also supports the 
ability to trigger Dozer mappings <a shape="rect" class="external-link" 
href="http://camel.apache.org/dozer-type-conversion.html";>as a type 
converter</a>. &#160;The primary differences between using a Dozer endpoint and 
a Dozer converter are:</p><ul><li>The ability to manage Dozer mapping 
configuration on a per-endpoint basis vs. global configuration via the 
converter registry.</li><li>A Dozer endpoint can be configured to 
marshal/unmarshal input and output data using Camel data formats to support a 
single, any-to-any transformation endpoint</li><li>The Dozer component allows 
for fine-grained integration and extension of 
 Dozer to support additional functionality (e.g. mapping literal values, using 
expressions for mappings, etc.).</li></ul><p>In order to use the Dozer 
component, Maven users will need to add the following dependency to 
their&#160;<code>pom.xml</code>:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-dozer&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/dropbox.html
==============================================================================
--- websites/production/camel/content/dropbox.html (original)
+++ websites/production/camel/content/dropbox.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Dropbox-CamelDropboxcomponent">Camel Dropbox 
component</h2><p><strong>Available as of Camel 2.14</strong></p><p>The 
<strong>dropbox:</strong> component allows you to treat <a shape="rect" 
class="external-link" href="https://www.dropbox.com"; 
rel="nofollow">Dropbox</a>&#160;remote folders as a producer or consumer of 
messages. Using the <a shape="rect" class="external-link" 
href="http://dropbox.github.io/dropbox-sdk-java/api-docs/v1.7.x/"; 
rel="nofollow">Dropbox Java Core API</a> (reference version for this component 
is 1.7.x), this camel component has the following features:</p><ul><li>As a 
consumer, download files and search files by queries</li><li>As a producer, 
download files, move files between remote directories, delete files/dir, upload 
files&#160;and search files by queries</li></ul><p>Maven users will need to add 
the following dependency to their <code>pom.xml</code> for this 
component:</p><div class="code panel pdl" style="border
 -width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-dropbox&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/durable-subscriber.html
==============================================================================
--- websites/production/camel/content/durable-subscriber.html (original)
+++ websites/production/camel/content/durable-subscriber.html Thu Sep 14 
19:25:46 2017
@@ -110,7 +110,7 @@ from(&quot;activemq:topic:foo?clientId=2
 <p><strong>Using the <a shape="rect" href="spring-xml-extensions.html">Spring 
XML Extensions</a></strong></p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
     &lt;from uri=&quot;direct:start&quot;/&gt;
     &lt;to uri=&quot;activemq:topic:foo&quot;/&gt;
@@ -145,7 +145,7 @@ from(&quot;activemq:queue:Consumer.2.Vir
 <p><strong>Using the <a shape="rect" href="spring-xml-extensions.html">Spring 
XML Extensions</a></strong></p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
     &lt;from uri=&quot;direct:start&quot;/&gt;
     &lt;to uri=&quot;activemq:topic:VirtualTopic.foo&quot;/&gt;

Modified: websites/production/camel/content/dynamicrouter-annotation.html
==============================================================================
--- websites/production/camel/content/dynamicrouter-annotation.html (original)
+++ websites/production/camel/content/dynamicrouter-annotation.html Thu Sep 14 
19:25:46 2017
@@ -110,7 +110,7 @@ public class RouterBean {
 <p>For example if the above bean is configured in <a shape="rect" 
href="spring.html">Spring</a> when using a 
<strong>&lt;camelContext&gt;</strong> element as follows</p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
 &lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot;
        xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;

Modified: websites/production/camel/content/ehcache.html
==============================================================================
--- websites/production/camel/content/ehcache.html (original)
+++ websites/production/camel/content/ehcache.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Ehcache-EhcacheComponent">Ehcache Component</h2><p><strong>Available as of 
Camel 2.18.x</strong></p><p>The <strong>ehcache</strong>&#160;component enables 
you to perform caching operations using Ehcache 3 as the Cache 
Implementation.</p><p>This component supports producer and event based consumer 
endpoints.</p><p>The Cache consumer is an event based consumer and can be used 
to listen and respond to specific cache activities.&#160;</p><p>Maven users 
will need to add the following dependency to 
their&#160;<code>pom.xml</code>&#160;for this component:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-ehcache&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/ejb.html
==============================================================================
--- websites/production/camel/content/ejb.html (original)
+++ websites/production/camel/content/ejb.html Thu Sep 14 19:25:46 2017
@@ -93,7 +93,7 @@
 
 <p>Maven users will need to add the following dependency to their 
<code>pom.xml</code> for this component:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-ejb&lt;/artifactId&gt;

Modified: websites/production/camel/content/el.html
==============================================================================
--- websites/production/camel/content/el.html (original)
+++ websites/production/camel/content/el.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="EL-EL">EL</h2><p>Camel supports 
the unified JSP and JSF Expression Language via the <a shape="rect" 
class="external-link" href="http://juel.sourceforge.net/"; 
rel="nofollow">JUEL</a> to allow an <a shape="rect" 
href="expression.html">Expression</a> or <a shape="rect" 
href="predicate.html">Predicate</a> to be used in the <a shape="rect" 
href="dsl.html">DSL</a> or <a shape="rect" href="xml-configuration.html">Xml 
Configuration</a>.</p><p>For example you could use EL inside a <a shape="rect" 
href="message-filter.html">Message Filter</a> in XML</p><div class="code panel 
pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;seda:foo&quot;/&gt;
   &lt;filter&gt;
     &lt;el&gt;${in.headers.foo == &#39;bar&#39;}&lt;/el&gt;
@@ -95,7 +95,7 @@
 &lt;/route&gt;
 ]]></script>
 </div></div><p>You could also use slightly different syntax, e.g. if the 
header name is not a valid identifier:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
   &lt;from uri=&quot;seda:foo&quot;/&gt;
   &lt;filter&gt;
     &lt;el&gt;${in.headers[&#39;My Header&#39;] == &#39;bar&#39;}&lt;/el&gt;

Modified: websites/production/camel/content/elasticsearch.html
==============================================================================
--- websites/production/camel/content/elasticsearch.html (original)
+++ websites/production/camel/content/elasticsearch.html Thu Sep 14 19:25:46 
2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="ElasticSearch-ElasticSearchComponent">ElasticSearch 
Component</h2><p><strong>Available as of Camel 2.11</strong></p><p>The 
ElasticSearch component allows you to interface with an <a shape="rect" 
class="external-link" href="http://elasticsearch.org"; 
rel="nofollow">ElasticSearch</a> server. Maven users will need to add the 
following dependency to their <strong><code>pom.xml</code></strong> for this 
component:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-elasticsearch&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;
@@ -101,7 +101,7 @@
   
.to(&quot;elasticsearch://local?operation=INDEX&amp;indexName=twitter&amp;indexType=tweet&quot;);
 ]]></script>
 </div></div><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;route&gt;
     &lt;from uri=&quot;direct:index&quot;/&gt;
     &lt;to 
uri=&quot;elasticsearch://local?operation=INDEX&amp;indexName=twitter&amp;indexType=tweet&quot;/&gt;
 &lt;/route&gt;

Modified: websites/production/camel/content/elsql.html
==============================================================================
--- websites/production/camel/content/elsql.html (original)
+++ websites/production/camel/content/elsql.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="ElSql-ElSqlComponent">ElSql 
Component</h2><p><strong>Available as of Camel 2.16</strong></p><p>The 
<strong>elsql:</strong> component is an extension to the existing <a 
shape="rect" href="sql-component.html">SQL Component</a> that uses <a 
shape="rect" class="external-link" href="https://github.com/OpenGamma/ElSql"; 
rel="nofollow">ElSql</a> to define the SQL queries.&#160;</p><p>This component 
uses <code><strong>spring-jdbc</strong></code> behind the scenes for the actual 
SQL handling.</p><p>Maven users will need to add the following dependency to 
their <code>pom.xml</code> for this component:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-elsql&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/etcd.html
==============================================================================
--- websites/production/camel/content/etcd.html (original)
+++ websites/production/camel/content/etcd.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="Etcd-EtcdComponent">Etcd 
Component</h2><div class="confluence-information-macro 
confluence-information-macro-tip"><p class="title">Available since Camel 
2.17.0</p><span class="aui-icon aui-icon-small aui-iconfont-approve 
confluence-information-macro-icon"></span><div 
class="confluence-information-macro-body">&#160;</div></div><p><a shape="rect" 
class="external-link" href="https://coreos.com/etcd/"; 
rel="nofollow">Etcd</a>&#160;<span style="">is a distributed key value store 
that provides a reliable way to store data across a cluster of 
machines</span>.&#160;</p><p>Maven users will need to add the following 
dependency to their&#160;<code>pom.xml</code>&#160;for this component.</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-etcd&lt;/artifactId&gt;
     &lt;!-- use the same version as your Camel core version --&gt;

Modified: websites/production/camel/content/eventadmin.html
==============================================================================
--- websites/production/camel/content/eventadmin.html (original)
+++ websites/production/camel/content/eventadmin.html Thu Sep 14 19:25:46 2017
@@ -92,7 +92,7 @@
 <h3 id="EventAdmin-Dependencies">Dependencies</h3>
 <p>Maven users need to add the following dependency to their 
<code>pom.xml</code></p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;dependency&gt;
   &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
   &lt;artifactId&gt;camel-eventadmin&lt;/artifactId&gt;
@@ -104,7 +104,7 @@
 
 <h3 id="EventAdmin-URIformat">URI format</h3>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 eventadmin:topic[?options]
 ]]></script>
 </div></div>
@@ -133,7 +133,7 @@ eventadmin:topic[?options]
 
 <h3 id="EventAdmin-Exampleusage">Example usage</h3>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
     &lt;from uri=&quot;eventadmin:*&quot;/&gt;
     &lt;to uri=&quot;stream:out&quot;/&gt;

Modified: 
websites/production/camel/content/exception-orgapachecamelnosuchendpointexception.html
==============================================================================
--- 
websites/production/camel/content/exception-orgapachecamelnosuchendpointexception.html
 (original)
+++ 
websites/production/camel/content/exception-orgapachecamelnosuchendpointexception.html
 Thu Sep 14 19:25:46 2017
@@ -93,7 +93,7 @@ If you try to use the definition below w
 <strong><code>org.apache.camel.NoSuchEndpointException: No endpoint could be 
found for: jetty:http</code><code>://localhost:8080/bus</code></strong></p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;camelContext id=&quot;camel&quot; 
xmlns=&quot;http://activemq.apache.org/camel/schema/spring&quot;&gt;
     &lt;route&gt;
        &lt;from uri=&quot;jetty:http://localhost:8080/bus&quot; /&gt;

Modified: 
websites/production/camel/content/exception-orgxmlsaxsaxparseexception.html
==============================================================================
--- websites/production/camel/content/exception-orgxmlsaxsaxparseexception.html 
(original)
+++ websites/production/camel/content/exception-orgxmlsaxsaxparseexception.html 
Thu Sep 14 19:25:46 2017
@@ -100,7 +100,7 @@ from(&quot;timer://myTimer?fixedRate=tru
 
 <p>...matches this example in the Spring XML syntax</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 
&lt;from&gt;timer://myTimer?fixedRate=true&amp;amp;delay=0&amp;amp;period=2000&lt;/from&gt;
 ]]></script>
 </div></div></div>

Modified: websites/production/camel/content/exec.html
==============================================================================
--- websites/production/camel/content/exec.html (original)
+++ websites/production/camel/content/exec.html Thu Sep 14 19:25:46 2017
@@ -93,7 +93,7 @@
 <h3 id="Exec-Dependencies">Dependencies</h3>
 <p>Maven users need to add the following dependency to their 
<code>pom.xml</code></p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;dependency&gt;
   &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
   &lt;artifactId&gt;camel-exec&lt;/artifactId&gt;
@@ -105,7 +105,7 @@
 
 <h3 id="Exec-URIformat">URI format</h3>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 exec://executable[?options]
 ]]></script>
 </div></div>

Modified: websites/production/camel/content/file-language.html
==============================================================================
--- websites/production/camel/content/file-language.html (original)
+++ websites/production/camel/content/file-language.html Thu Sep 14 19:25:46 
2017
@@ -107,7 +107,7 @@
 <script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[fileName=&quot;uniquefile-${bean:myguidgenerator.generateid}.txt&quot;
 ]]></script>
 </div></div><p>And of course all this can be combined in one expression where 
you can use the <a shape="rect" href="file-language.html">File Language</a>, <a 
shape="rect" href="simple.html">Simple</a> and the <a shape="rect" 
href="bean.html">Bean</a> language in one combined expression. This is pretty 
powerful for those common file path patterns.</p><h3 
id="FileLanguage-UsingSpring'sPropertyPlaceholderConfigurerwiththeFileComponent">Using
 Spring's&#160;<code>PropertyPlaceholderConfigurer</code> with the <a 
shape="rect" href="file2.html">File</a> Component</h3><p>In Camel you can use 
the <a shape="rect" href="file-language.html">File Language</a> directly from 
the <a shape="rect" href="simple.html">Simple</a> language which makes a <a 
shape="rect" href="content-based-router.html">Content Based Router</a> easier 
to do in Spring XML, where we can route based on file extensions as shown 
below:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent
  pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;from 
uri=&quot;file://input/orders&quot;/&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;from 
uri=&quot;file://input/orders&quot;/&gt;
   &lt;choice&gt;
     &lt;when&gt;
       &lt;simple&gt;${file:ext} == &#39;txt&#39;&lt;/simple&gt;

Modified: websites/production/camel/content/flatpack.html
==============================================================================
--- websites/production/camel/content/flatpack.html (original)
+++ websites/production/camel/content/flatpack.html Thu Sep 14 19:25:46 2017
@@ -92,7 +92,7 @@
 
 <p>Maven users will need to add the following dependency to their 
<code>pom.xml</code> for this component:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
 &lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-flatpack&lt;/artifactId&gt;
@@ -171,7 +171,7 @@ Each <code>Map</code> contains the key f
 
 <p>The example below illustrates this fact that we have a header and a 
trailer. You can omit one or both of them if not needed. </p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
     &lt;RECORD id=&quot;header&quot; startPosition=&quot;1&quot; 
endPosition=&quot;3&quot; indicator=&quot;HBT&quot;&gt;
         &lt;COLUMN name=&quot;INDICATOR&quot; length=&quot;3&quot;/&gt;
         &lt;COLUMN name=&quot;DATE&quot; length=&quot;8&quot;/&gt;
@@ -197,7 +197,7 @@ Each <code>Map</code> contains the key f
 <p>A common use case is sending a file to this endpoint for further processing 
in a separate route. For example:</p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[
   &lt;camelContext 
xmlns=&quot;http://activemq.apache.org/camel/schema/spring&quot;&gt;
     &lt;route&gt;
       &lt;from uri=&quot;file://someDirectory&quot;/&gt;

Modified: websites/production/camel/content/flink.html
==============================================================================
--- websites/production/camel/content/flink.html (original)
+++ websites/production/camel/content/flink.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 
id="Flink-ApacheFlinkComponent">Apache Flink Component</h2><p><strong>Available 
as of Camel 2.18</strong></p><p>This documentation page covers the <a 
shape="rect" rel="nofollow">https://flink.apache.org</a>&#160;component for the 
Apache Camel.</p><p>The<strong> camel-flink</strong> component provides 
a&#160;bridge between Camel connectors and Flink tasks.&#160;This Camel Flink 
connector provides a way to route message from various<br 
clear="none">transports, dynamically choosing a flink task to execute, use 
incoming&#160;message as input data for the task and finally deliver the 
results back to&#160;the Camel pipeline.</p><p>Maven users will need to add the 
following dependency to their <code>pom.xml</code> for this component:</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-flink&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/fop.html
==============================================================================
--- websites/production/camel/content/fop.html (original)
+++ websites/production/camel/content/fop.html Thu Sep 14 19:25:46 2017
@@ -86,7 +86,7 @@
         <tr>
         <td valign="top" width="100%">
 <div class="wiki-content maincontent"><h2 id="FOP-FOPComponent">FOP 
Component</h2><p><strong>Available as of Camel 2.10</strong></p><p>The FOP 
component allows you to render a message into different output formats using <a 
shape="rect" class="external-link" 
href="http://xmlgraphics.apache.org/fop/index.html";>Apache FOP</a>.</p><p>Maven 
users will need to add the following dependency to their <code>pom.xml</code> 
for this component:</p><div class="code panel pdl" style="border-width: 
1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;dependency&gt;
     &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
     &lt;artifactId&gt;camel-fop&lt;/artifactId&gt;
     &lt;version&gt;x.x.x&lt;/version&gt;

Modified: websites/production/camel/content/gae.html
==============================================================================
--- websites/production/camel/content/gae.html (original)
+++ websites/production/camel/content/gae.html Thu Sep 14 19:25:46 2017
@@ -88,7 +88,7 @@
 
 
 <h3 id="GAE-Camelcontext">Camel context</h3><p>Setting up a 
<code>SpringCamelContext</code> on Google App Engine differs between Camel 2.1 
and higher versions. The problem is that usage of the Camel-specific Spring 
configuration XML schema from the <code><a shape="rect" class="external-link" 
href="http://camel.apache.org/schema/spring";>http://camel.apache.org/schema/spring</a></code>
 namespace requires JAXB and Camel 2.1 depends on a Google App Engine SDK 
version that doesn't support JAXB yet. This limitation has been removed since 
Camel 2.2.</p><p>JMX must be disabled in any case because the 
<code>javax.management</code> package isn't on the App Engine JRE 
whitelist.</p><h4 id="GAE-Camel2.1">Camel 2.1</h4><p><code>camel-gae</code> 2.1 
comes with the following <code>CamelContext</code> 
implementations.</p><ul><li><code>org.apache.camel.component.gae.context.GaeDefaultCamelContext</code>
 (extends 
<code>org.apache.camel.impl.DefaultCamelContext</code>)</li><li><code>org.apache.camel.c
 omponent.gae.context.GaeSpringCamelContext</code> (extends 
<code>org.apache.camel.spring.SpringCamelContext</code>)</li></ul><p>Both 
disable JMX before startup. The <code>GaeSpringCamelContext</code> additionally 
provides setter methods adding route builders as shown in the next 
example.</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeHeader panelHeader pdl" style="border-bottom-width: 
1px;"><b>appctx.xml</b></div><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;beans 
xmlns=&quot;http://www.springframework.org/schema/beans&quot;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;beans 
xmlns=&quot;http://www.springframework.org/schema/beans&quot;
        xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
        xsi:schemaLocation=&quot;
 http://www.springframework.org/schema/beans
@@ -106,7 +106,7 @@ http://www.springframework.org/schema/be
 &lt;/beans&gt;
 ]]></script>
 </div></div><p>Alternatively, use the <code>routeBuilders</code> property of 
the <code>GaeSpringCamelContext</code> for setting a list of route builders. 
Using this approach, a <code>SpringCamelContext</code> can be configured on GAE 
without the need for JAXB.</p><h4 id="GAE-Camel2.2orhigher">Camel 2.2 or 
higher</h4><p>With Camel 2.2 or higher, applications can use the <code><a 
shape="rect" class="external-link" 
href="http://camel.apache.org/schema/spring";>http://camel.apache.org/schema/spring</a></code>
 namespace for configuring a <code>SpringCamelContext</code> but still need to 
disable JMX. Here's an example.</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeHeader panelHeader pdl" 
style="border-bottom-width: 1px;"><b>appctx.xml</b></div><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;beans 
xmlns=&quot;http://www.springframework.org/schema/beans&quot;
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;beans 
xmlns=&quot;http://www.springframework.org/schema/beans&quot;
        xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
        xmlns:camel=&quot;http://camel.apache.org/schema/spring&quot;
        xsi:schemaLocation=&quot;
@@ -127,7 +127,7 @@ http://camel.apache.org/schema/spring/ca
 &lt;/beans&gt;
 ]]></script>
 </div></div><p><span class="confluence-anchor-link" 
id="GAE-web-xml"></span></p><h3 id="GAE-Theweb.xml">The web.xml</h3><p>Running 
Camel on GAE requires usage of the <code>CamelHttpTransportServlet</code> from 
<code>camel-servlet</code>. The following example shows how to configure this 
servlet together with a Spring application context XML file.</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeHeader 
panelHeader pdl" style="border-bottom-width: 1px;"><b>web.xml</b></div><div 
class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;web-app 
+<script class="brush: java; gutter: false; theme: Default" 
type="syntaxhighlighter"><![CDATA[&lt;web-app 
 xmlns=&quot;http://java.sun.com/xml/ns/javaee&quot;
 xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
 xmlns:web=&quot;http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd&quot;


Reply via email to