Author: buildbot Date: Fri Apr 3 01:20:18 2015 New Revision: 946143 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 01:20:18 2015 @@ -945,12 +945,12 @@ df.disableFeature(DeserializationFeature df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script> </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 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[ <dataFormats> - <json id=âjson1â prettyPrint=âtrueâ/> - <json id=âjson2â prettyPrint=âtrueâ library=âJackson"/> - <json id=âjson3â prettyPrint=âtrueâ library="Gson"/> + <json id="xstream" prettyPrint="true"/> + <json id="jackson" prettyPrint="true" library="Jackson"/> + <json id="gson" prettyPrint="true" library="Gson"/> </dataFormats>]]></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").marshal().json(true); +<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[from("direct:inPretty").marshal().json(true); Â from("direct:inPretty").marshal().json(JsonLibrary.Jackson, true); Â @@ -976,7 +976,7 @@ from("direct:inPretty").marsha <version>2.10.0</version> </dependency> ]]></script> -</div></div><p> </p> +</div></div> 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 01:20:18 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.rbtoc1428020354111 {padding: 0px;} -div.rbtoc1428020354111 ul {list-style: disc;margin-left: 0px;} -div.rbtoc1428020354111 li {margin-left: 0px;padding-left: 0px;} +div.rbtoc1428023894367 {padding: 0px;} +div.rbtoc1428023894367 ul {list-style: disc;margin-left: 0px;} +div.rbtoc1428023894367 li {margin-left: 0px;padding-left: 0px;} -/*]]>*/</style></p><div class="toc-macro rbtoc1428020354111"> +/*]]>*/</style></p><div class="toc-macro rbtoc1428023894367"> <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.rbtoc1428020356490 {padding: 0px;} -div.rbtoc1428020356490 ul {list-style: disc;margin-left: 0px;} -div.rbtoc1428020356490 li {margin-left: 0px;padding-left: 0px;} +div.rbtoc1428023894648 {padding: 0px;} +div.rbtoc1428023894648 ul {list-style: disc;margin-left: 0px;} +div.rbtoc1428023894648 li {margin-left: 0px;padding-left: 0px;} -/*]]>*/</style><div class="toc-macro rbtoc1428020356490"> +/*]]>*/</style><div class="toc-macro rbtoc1428023894648"> <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> @@ -10699,12 +10699,12 @@ df.disableFeature(DeserializationFeature df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script> </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 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[ <dataFormats> - <json id=âjson1â prettyPrint=âtrueâ/> - <json id=âjson2â prettyPrint=âtrueâ library=âJackson"/> - <json id=âjson3â prettyPrint=âtrueâ library="Gson"/> + <json id="xstream" prettyPrint="true"/> + <json id="jackson" prettyPrint="true" library="Jackson"/> + <json id="gson" prettyPrint="true" library="Gson"/> </dataFormats>]]></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").marshal().json(true); +<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[from("direct:inPretty").marshal().json(true); Â from("direct:inPretty").marshal().json(JsonLibrary.Jackson, true); Â @@ -10730,7 +10730,7 @@ from("direct:inPretty").marsha <version>2.10.0</version> </dependency> ]]></script> -</div></div><p> </p> +</div></div> 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"> @@ -18930,11 +18930,11 @@ template.send("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.rbtoc1428020385940 {padding: 0px;} -div.rbtoc1428020385940 ul {list-style: disc;margin-left: 0px;} -div.rbtoc1428020385940 li {margin-left: 0px;padding-left: 0px;} +div.rbtoc1428023916642 {padding: 0px;} +div.rbtoc1428023916642 ul {list-style: disc;margin-left: 0px;} +div.rbtoc1428023916642 li {margin-left: 0px;padding-left: 0px;} -/*]]>*/</style></p><div class="toc-macro rbtoc1428020385940"> +/*]]>*/</style></p><div class="toc-macro rbtoc1428023916642"> <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 01:20:18 2015 @@ -308,12 +308,12 @@ df.disableFeature(DeserializationFeature df.disableFeature(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);]]></script> </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 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[ <dataFormats> - <json id=âjson1â prettyPrint=âtrueâ/> - <json id=âjson2â prettyPrint=âtrueâ library=âJackson"/> - <json id=âjson3â prettyPrint=âtrueâ library="Gson"/> + <json id="xstream" prettyPrint="true"/> + <json id="jackson" prettyPrint="true" library="Jackson"/> + <json id="gson" prettyPrint="true" library="Gson"/> </dataFormats>]]></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").marshal().json(true); +<script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[from("direct:inPretty").marshal().json(true); Â from("direct:inPretty").marshal().json(JsonLibrary.Jackson, true); Â @@ -339,7 +339,7 @@ from("direct:inPretty").marsha <version>2.10.0</version> </dependency> ]]></script> -</div></div><p> </p></div> +</div></div></div> </td> <td valign="top"> <div class="navigation">