Author: buildbot
Date: Fri Apr  3 00:21:56 2015
New Revision: 946140

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-dataformat-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/json.html

Modified: websites/production/camel/content/book-dataformat-appendix.html
==============================================================================
--- websites/production/camel/content/book-dataformat-appendix.html (original)
+++ websites/production/camel/content/book-dataformat-appendix.html Fri Apr  3 
00:21:56 2015
@@ -938,12 +938,24 @@ format.setUnmarshalType(MyPojo.class);]]
 </div></div><p>&#160;Multiple modules can be specified separated by comma, 
such as moduleRefs="myJacksonModule,myOtherModule"</p><h3 
id="BookDataFormatAppendix-EnablingordisablefeaturesusingJackson">Enabling or 
disable features using Jackson</h3><p><strong>Available as of Camel 
2.15</strong></p><p>Jackson has a number of features you can enable or disable, 
which its ObjectMapper uses. For example to disable failing on unknown 
properties when marshalling, you can configure this using the 
disableFeatures:</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[ &lt;dataFormats&gt;
       &lt;json id=&quot;json&quot; library=&quot;Jackson&quot; 
unmarshalTypeName=&quot;com.foo.MyPojo&quot; 
disableFeatures=&quot;FAIL_ON_UNKNOWN_PROPERTIES&quot;/&gt;
-    &lt;/dataFormats&gt;]]></script>
+ &lt;/dataFormats&gt;]]></script>
 </div></div><p>You can disable multiple features by separating the values 
using comma. The values for the features must be the name of the enums from 
Jackson from the following enum 
classes</p><ul><li>com.fasterxml.jackson.databind.SerializationFeature</li><li>com.fasterxml.jackson.databind.DeserializationFeature</li><li>com.fasterxml.jackson.databind.MapperFeature</li></ul><p>To
 enable a feature use the enableFeatures options instead.</p><p>From Java code 
you can use the type safe methods from camel-jackson module:</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[JacksonDataFormat df = new 
JacksonDataFormat(MyPojo.class);
 df.disableFeature(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
 
df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script>
-</div></div><p>&#160;</p><h3 
id="BookDataFormatAppendix-DependenciesforXStream">Dependencies for 
XStream</h3><p>To use JSON in your camel routes you need to add the a 
dependency on <strong>camel-xstream</strong> which implements this data 
format.</p><p>If you use maven you could just add the following to your 
pom.xml, substituting the version number for the latest &amp; greatest release 
(see <a shape="rect" href="download.html">the download page for the latest 
versions</a>).</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
+</div></div><h3 id="BookDataFormatAppendix-FormattedJSONmarshalling">Formatted 
JSON marshalling</h3><p><strong>Available as of Camel 2.16</strong></p><p>Using 
the <code>prettyPrint</code> option&#160;one can output a well formatted JSON 
while marshalling:</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[ &lt;dataFormats&gt;
+      &lt;json id=“json1” prettyPrint=“true”/&gt;
+      &lt;json id=“json2” prettyPrint=“true” 
library=“Jackson&quot;/&gt;
+      &lt;json id=“json3” prettyPrint=“true” 
library=&quot;Gson&quot;/&gt;
+ &lt;/dataFormats&gt;]]></script>
+</div></div><p><span style="line-height: 1.5625;">And in Java 
DSL:</span></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(“direct:inPretty&quot;).marshal().json(true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Jackson, true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Gson, 
true);]]></script>
+</div></div><h3 id="BookDataFormatAppendix-DependenciesforXStream"><span 
style="line-height: 1.5625;">Dependencies for XStream</span></h3><p>To use JSON 
in your camel routes you need to add the a dependency on 
<strong>camel-xstream</strong> which implements this data format.</p><p>If you 
use maven you could just add the following to your pom.xml, substituting the 
version number for the latest &amp; greatest release (see <a shape="rect" 
href="download.html">the download page for the latest versions</a>).</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;dependency&gt;
   &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
   &lt;artifactId&gt;camel-xstream&lt;/artifactId&gt;
@@ -964,7 +976,7 @@ df.disableFeature(DeserializationFeature
   &lt;version&gt;2.10.0&lt;/version&gt;
 &lt;/dependency&gt;
 ]]></script>
-</div></div>
+</div></div><p>&#160;</p>
 The Zip <a shape="rect" href="data-format.html">Data Format</a> is a message 
compression and de-compression format. Messages marshalled using Zip 
compression can be unmarshalled using Zip decompression just prior to being 
consumed at the endpoint. The compression capability is quite useful when you 
deal with large XML and Text based payloads. It facilitates more optimal use of 
network bandwidth while incurring a small cost in order to compress and 
decompress payloads at the endpoint.
 
     <div class="aui-message hint shadowed information-macro">

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Fri Apr  3 00:21:56 
2015
@@ -4126,11 +4126,11 @@ While not actual tutorials you might fin
                     </div>
     </div>
 <h2 id="BookInOnePage-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.rbtoc1427962721451 {padding: 0px;}
-div.rbtoc1427962721451 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1427962721451 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1428020354111 {padding: 0px;}
+div.rbtoc1428020354111 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1428020354111 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1427962721451">
+/*]]>*/</style></p><div class="toc-macro rbtoc1428020354111">
 <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>
@@ -6316,11 +6316,11 @@ So we completed the last piece in the pi
 
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1427962721785 {padding: 0px;}
-div.rbtoc1427962721785 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1427962721785 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1428020356490 {padding: 0px;}
+div.rbtoc1428020356490 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1428020356490 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1427962721785">
+/*]]>*/</style><div class="toc-macro rbtoc1428020356490">
 <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>
@@ -10692,12 +10692,24 @@ format.setUnmarshalType(MyPojo.class);]]
 </div></div><p>&#160;Multiple modules can be specified separated by comma, 
such as moduleRefs="myJacksonModule,myOtherModule"</p><h3 
id="BookInOnePage-EnablingordisablefeaturesusingJackson">Enabling or disable 
features using Jackson</h3><p><strong>Available as of Camel 
2.15</strong></p><p>Jackson has a number of features you can enable or disable, 
which its ObjectMapper uses. For example to disable failing on unknown 
properties when marshalling, you can configure this using the 
disableFeatures:</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[ &lt;dataFormats&gt;
       &lt;json id=&quot;json&quot; library=&quot;Jackson&quot; 
unmarshalTypeName=&quot;com.foo.MyPojo&quot; 
disableFeatures=&quot;FAIL_ON_UNKNOWN_PROPERTIES&quot;/&gt;
-    &lt;/dataFormats&gt;]]></script>
+ &lt;/dataFormats&gt;]]></script>
 </div></div><p>You can disable multiple features by separating the values 
using comma. The values for the features must be the name of the enums from 
Jackson from the following enum 
classes</p><ul><li>com.fasterxml.jackson.databind.SerializationFeature</li><li>com.fasterxml.jackson.databind.DeserializationFeature</li><li>com.fasterxml.jackson.databind.MapperFeature</li></ul><p>To
 enable a feature use the enableFeatures options instead.</p><p>From Java code 
you can use the type safe methods from camel-jackson module:</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[JacksonDataFormat df = new 
JacksonDataFormat(MyPojo.class);
 df.disableFeature(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
 
df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script>
-</div></div><p>&#160;</p><h3 
id="BookInOnePage-DependenciesforXStream">Dependencies for XStream</h3><p>To 
use JSON in your camel routes you need to add the a dependency on 
<strong>camel-xstream</strong> which implements this data format.</p><p>If you 
use maven you could just add the following to your pom.xml, substituting the 
version number for the latest &amp; greatest release (see <a shape="rect" 
href="download.html">the download page for the latest versions</a>).</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
+</div></div><h3 id="BookInOnePage-FormattedJSONmarshalling">Formatted JSON 
marshalling</h3><p><strong>Available as of Camel 2.16</strong></p><p>Using the 
<code>prettyPrint</code> option&#160;one can output a well formatted JSON while 
marshalling:</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[ &lt;dataFormats&gt;
+      &lt;json id=“json1” prettyPrint=“true”/&gt;
+      &lt;json id=“json2” prettyPrint=“true” 
library=“Jackson&quot;/&gt;
+      &lt;json id=“json3” prettyPrint=“true” 
library=&quot;Gson&quot;/&gt;
+ &lt;/dataFormats&gt;]]></script>
+</div></div><p><span style="line-height: 1.5625;">And in Java 
DSL:</span></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(“direct:inPretty&quot;).marshal().json(true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Jackson, true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Gson, 
true);]]></script>
+</div></div><h3 id="BookInOnePage-DependenciesforXStream"><span 
style="line-height: 1.5625;">Dependencies for XStream</span></h3><p>To use JSON 
in your camel routes you need to add the a dependency on 
<strong>camel-xstream</strong> which implements this data format.</p><p>If you 
use maven you could just add the following to your pom.xml, substituting the 
version number for the latest &amp; greatest release (see <a shape="rect" 
href="download.html">the download page for the latest versions</a>).</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;dependency&gt;
   &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
   &lt;artifactId&gt;camel-xstream&lt;/artifactId&gt;
@@ -10718,7 +10730,7 @@ df.disableFeature(DeserializationFeature
   &lt;version&gt;2.10.0&lt;/version&gt;
 &lt;/dependency&gt;
 ]]></script>
-</div></div>
+</div></div><p>&#160;</p>
 The Zip <a shape="rect" href="data-format.html">Data Format</a> is a message 
compression and de-compression format. Messages marshalled using Zip 
compression can be unmarshalled using Zip decompression just prior to being 
consumed at the endpoint. The compression capability is quite useful when you 
deal with large XML and Text based payloads. It facilitates more optimal use of 
network bandwidth while incurring a small cost in order to compress and 
decompress payloads at the endpoint.
 
     <div class="aui-message hint shadowed information-macro">
@@ -18918,11 +18930,11 @@ template.send(&quot;direct:alias-verify&
                     </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.rbtoc1427962725148 {padding: 0px;}
-div.rbtoc1427962725148 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1427962725148 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1428020385940 {padding: 0px;}
+div.rbtoc1428020385940 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1428020385940 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1427962725148">
+/*]]>*/</style></p><div class="toc-macro rbtoc1428020385940">
 <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/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/json.html
==============================================================================
--- websites/production/camel/content/json.html (original)
+++ websites/production/camel/content/json.html Fri Apr  3 00:21:56 2015
@@ -301,12 +301,24 @@ format.setUnmarshalType(MyPojo.class);]]
 </div></div><p>&#160;Multiple modules can be specified separated by comma, 
such as moduleRefs="myJacksonModule,myOtherModule"</p><h3 
id="JSON-EnablingordisablefeaturesusingJackson">Enabling or disable features 
using Jackson</h3><p><strong>Available as of Camel 2.15</strong></p><p>Jackson 
has a number of features you can enable or disable, which its ObjectMapper 
uses. For example to disable failing on unknown properties when marshalling, 
you can configure this using the disableFeatures:</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[ &lt;dataFormats&gt;
       &lt;json id=&quot;json&quot; library=&quot;Jackson&quot; 
unmarshalTypeName=&quot;com.foo.MyPojo&quot; 
disableFeatures=&quot;FAIL_ON_UNKNOWN_PROPERTIES&quot;/&gt;
-    &lt;/dataFormats&gt;]]></script>
+ &lt;/dataFormats&gt;]]></script>
 </div></div><p>You can disable multiple features by separating the values 
using comma. The values for the features must be the name of the enums from 
Jackson from the following enum 
classes</p><ul><li>com.fasterxml.jackson.databind.SerializationFeature</li><li>com.fasterxml.jackson.databind.DeserializationFeature</li><li>com.fasterxml.jackson.databind.MapperFeature</li></ul><p>To
 enable a feature use the enableFeatures options instead.</p><p>From Java code 
you can use the type safe methods from camel-jackson module:</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[JacksonDataFormat df = new 
JacksonDataFormat(MyPojo.class);
 df.disableFeature(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
 
df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script>
-</div></div><p>&#160;</p><h3 id="JSON-DependenciesforXStream">Dependencies for 
XStream</h3><p>To use JSON in your camel routes you need to add the a 
dependency on <strong>camel-xstream</strong> which implements this data 
format.</p><p>If you use maven you could just add the following to your 
pom.xml, substituting the version number for the latest &amp; greatest release 
(see <a shape="rect" href="download.html">the download page for the latest 
versions</a>).</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
+</div></div><h3 id="JSON-FormattedJSONmarshalling">Formatted JSON 
marshalling</h3><p><strong>Available as of Camel 2.16</strong></p><p>Using the 
<code>prettyPrint</code> option&#160;one can output a well formatted JSON while 
marshalling:</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[ &lt;dataFormats&gt;
+      &lt;json id=“json1” prettyPrint=“true”/&gt;
+      &lt;json id=“json2” prettyPrint=“true” 
library=“Jackson&quot;/&gt;
+      &lt;json id=“json3” prettyPrint=“true” 
library=&quot;Gson&quot;/&gt;
+ &lt;/dataFormats&gt;]]></script>
+</div></div><p><span style="line-height: 1.5625;">And in Java 
DSL:</span></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(“direct:inPretty&quot;).marshal().json(true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Jackson, true);
+ 
+from(&quot;direct:inPretty&quot;).marshal().json(JsonLibrary.Gson, 
true);]]></script>
+</div></div><h3 id="JSON-DependenciesforXStream"><span style="line-height: 
1.5625;">Dependencies for XStream</span></h3><p>To use JSON in your camel 
routes you need to add the a dependency on <strong>camel-xstream</strong> which 
implements this data format.</p><p>If you use maven you could just add the 
following to your pom.xml, substituting the version number for the latest &amp; 
greatest release (see <a shape="rect" href="download.html">the download page 
for the latest versions</a>).</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;dependency&gt;
   &lt;groupId&gt;org.apache.camel&lt;/groupId&gt;
   &lt;artifactId&gt;camel-xstream&lt;/artifactId&gt;
@@ -327,7 +339,7 @@ df.disableFeature(DeserializationFeature
   &lt;version&gt;2.10.0&lt;/version&gt;
 &lt;/dependency&gt;
 ]]></script>
-</div></div></div>
+</div></div><p>&#160;</p></div>
         </td>
         <td valign="top">
           <div class="navigation">


Reply via email to