You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2016/04/26 21:22:20 UTC

svn commit: r986742 - in /websites/production/camel/content: book-dataformat-appendix.html book-in-one-page.html cache/main.pageCache zip-dataformat.html

Author: buildbot
Date: Tue Apr 26 19:22:20 2016
New Revision: 986742

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/zip-dataformat.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 Tue Apr 26 19:22:20 2016
@@ -952,49 +952,16 @@ getContext().getProperties().put("C
 </dependency>
 ]]></script>
 </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="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body">
-<p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none">
-This is subject to change in the future, to allow a streaming based solution to have a low memory footprint.</p></div></div> 
-
-<h3 id="BookDataFormatAppendix-Options.2">Options</h3>
-
-<div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Option </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Default </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> compressionLevel </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> null </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-<br clear="none" class="atl-forced-newline">
-If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code> </p></td></tr></tbody></table></div>
-
-
-<h3 id="BookDataFormatAppendix-Marshal.1">Marshal</h3>
-
-<p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
+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="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none"> This is subject to change in the future, to allow a streaming bas
 ed solution to have a low memory footprint.</p></div></div><h3 id="BookDataFormatAppendix-Options.2">Options</h3><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Option</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Default</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>compressionLevel</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>null</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_COMPRESSION</code> <br clear=
 "none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code></p></td></tr></tbody></table></div><h3 id="BookDataFormatAppendix-Marshal.1">Marshal</h3><p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-<p>Alternatively if you would like to use the default setting you could send it as</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
+</div></div><p>Alternatively if you would like to use the default setting you could send it as</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-
-<h3 id="BookDataFormatAppendix-Unmarshal.1">Unmarshal</h3>
-
-<p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
+</div></div><h3 id="BookDataFormatAppendix-Unmarshal.1">Unmarshal</h3><p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
 ]]></script>
-</div></div>
-
-<h3 id="BookDataFormatAppendix-Dependencies.6">Dependencies</h3>
-
-<p>This data format is provided in <strong>camel-core</strong> so no additional dependencies is needed.</p>
+</div></div><h3 id="BookDataFormatAppendix-Dependencies.6">Dependencies</h3><p>This data format is provided in <strong>camel-core</strong> so no additional dependencies are needed.</p>
 <h2 id="BookDataFormatAppendix-TidyMarkup">TidyMarkup</h2>
 
 <p>TidyMarkup is a <a shape="rect" href="data-format.html">Data Format</a> that uses the <a shape="rect" class="external-link" href="http://www.ccil.org/~cowan/XML/tagsoup/" rel="nofollow">TagSoup</a> to tidy up HTML. It can be used to parse ugly HTML and return it as pretty wellformed HTML.</p>

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 Tue Apr 26 19:22:20 2016
@@ -3612,11 +3612,11 @@ The tutorial has been designed in two pa
 While not actual tutorials you might find working through the source of the various <a shape="rect" href="examples.html">Examples</a> useful.</li></ul>
 
 <h2 id="BookInOnePage-TutorialonSpringRemotingwithJMS">Tutorial on Spring Remoting with JMS</h2><p>&#160;</p><div class="confluence-information-macro confluence-information-macro-information"><p class="title">Thanks</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>This tutorial was kindly donated to Apache Camel by Martin Gilday.</p></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.rbtoc1461536340786 {padding: 0px;}
-div.rbtoc1461536340786 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1461536340786 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1461698341526 {padding: 0px;}
+div.rbtoc1461698341526 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1461698341526 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1461536340786">
+/*]]>*/</style></p><div class="toc-macro rbtoc1461698341526">
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-TutorialonSpringRemotingwithJMS">Tutorial on Spring Remoting with JMS</a></li><li><a shape="rect" href="#BookInOnePage-Preface">Preface</a></li><li><a shape="rect" href="#BookInOnePage-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#BookInOnePage-Distribution">Distribution</a></li><li><a shape="rect" href="#BookInOnePage-About">About</a></li><li><a shape="rect" href="#BookInOnePage-CreatetheCamelProject">Create the Camel Project</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-UpdatethePOMwithDependencies">Update the POM with Dependencies</a></li></ul>
 </li><li><a shape="rect" href="#BookInOnePage-WritingtheServer">Writing the Server</a>
@@ -5731,11 +5731,11 @@ So we completed the last piece in the pi
 <p>This example has been removed from <strong>Camel 2.9</strong> onwards. Apache Axis 1.4 is a very old and unsupported framework. We encourage users to use <a shape="rect" href="cxf.html">CXF</a> instead of Axis.</p></div></div>
 
 <style type="text/css">/*<![CDATA[*/
-div.rbtoc1461536341473 {padding: 0px;}
-div.rbtoc1461536341473 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1461536341473 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1461698342375 {padding: 0px;}
+div.rbtoc1461698342375 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1461698342375 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style><div class="toc-macro rbtoc1461536341473">
+/*]]>*/</style><div class="toc-macro rbtoc1461698342375">
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-TutorialusingAxis1.4withApacheCamel">Tutorial using Axis 1.4 with Apache Camel</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-Prerequisites">Prerequisites</a></li><li><a shape="rect" href="#BookInOnePage-Distribution">Distribution</a></li><li><a shape="rect" href="#BookInOnePage-Introduction">Introduction</a></li><li><a shape="rect" href="#BookInOnePage-SettinguptheprojecttorunAxis">Setting up the project to run Axis</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-Maven2">Maven 2</a></li><li><a shape="rect" href="#BookInOnePage-wsdl">wsdl</a></li><li><a shape="rect" href="#BookInOnePage-ConfiguringAxis">Configuring Axis</a></li><li><a shape="rect" href="#BookInOnePage-RunningtheExample">Running the Example</a></li></ul>
@@ -9867,49 +9867,16 @@ getContext().getProperties().put(&quot;C
 &lt;/dependency&gt;
 ]]></script>
 </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="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body">
-<p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none">
-This is subject to change in the future, to allow a streaming based solution to have a low memory footprint.</p></div></div> 
-
-<h3 id="BookInOnePage-Options.5">Options</h3>
-
-<div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Option </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Default </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> compressionLevel </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> null </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-<br clear="none" class="atl-forced-newline">
-If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code> </p></td></tr></tbody></table></div>
-
-
-<h3 id="BookInOnePage-Marshal.1">Marshal</h3>
-
-<p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
+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="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none"> This is subject to change in the future, to allow a streaming bas
 ed solution to have a low memory footprint.</p></div></div><h3 id="BookInOnePage-Options.5">Options</h3><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Option</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Default</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>compressionLevel</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>null</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_COMPRESSION</code> <br clear="none" cl
 ass="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code></p></td></tr></tbody></table></div><h3 id="BookInOnePage-Marshal.1">Marshal</h3><p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-<p>Alternatively if you would like to use the default setting you could send it as</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
+</div></div><p>Alternatively if you would like to use the default setting you could send it as</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-
-<h3 id="BookInOnePage-Unmarshal.1">Unmarshal</h3>
-
-<p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
+</div></div><h3 id="BookInOnePage-Unmarshal.1">Unmarshal</h3><p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
 ]]></script>
-</div></div>
-
-<h3 id="BookInOnePage-Dependencies.25">Dependencies</h3>
-
-<p>This data format is provided in <strong>camel-core</strong> so no additional dependencies is needed.</p>
+</div></div><h3 id="BookInOnePage-Dependencies.25">Dependencies</h3><p>This data format is provided in <strong>camel-core</strong> so no additional dependencies are needed.</p>
 <h2 id="BookInOnePage-TidyMarkup">TidyMarkup</h2>
 
 <p>TidyMarkup is a <a shape="rect" href="data-format.html">Data Format</a> that uses the <a shape="rect" class="external-link" href="http://www.ccil.org/~cowan/XML/tagsoup/" rel="nofollow">TagSoup</a> to tidy up HTML. It can be used to parse ugly HTML and return it as pretty wellformed HTML.</p>
@@ -17165,11 +17132,11 @@ template.send(&quot;direct:alias-verify&
 ]]></script>
 </div></div><p></p><h3 id="BookInOnePage-SeeAlso.28">See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html">Configuring Camel</a></li><li><a shape="rect" href="component.html">Component</a></li><li><a shape="rect" href="endpoint.html">Endpoint</a></li><li><a shape="rect" href="getting-started.html">Getting Started</a></li></ul><ul><li><a shape="rect" href="crypto.html">Crypto</a> Crypto is also available as a <a shape="rect" href="data-format.html">Data Format</a></li></ul> <h2 id="BookInOnePage-CXFComponent">CXF Component</h2><div class="confluence-information-macro confluence-information-macro-note"><span class="aui-icon aui-icon-small aui-iconfont-warning confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>When using CXF as a consumer, the <a shape="rect" href="cxf-bean-component.html">CXF Bean Component</a> allows you to factor out how message payloads are received from their processing as a RESTful or SOAP web service. This has the potential of using a multitude of transports to consume web 
 services. The bean component's configuration is also simpler and provides the fastest method to implement web services using Camel and CXF.</p></div></div><div class="confluence-information-macro confluence-information-macro-tip"><span class="aui-icon aui-icon-small aui-iconfont-approve confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>When using CXF in streaming modes (see DataFormat option), then also read about <a shape="rect" href="stream-caching.html">Stream caching</a>.</p></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.rbtoc1461536394426 {padding: 0px;}
-div.rbtoc1461536394426 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1461536394426 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1461698401320 {padding: 0px;}
+div.rbtoc1461698401320 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1461698401320 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1461536394426">
+/*]]>*/</style></p><div class="toc-macro rbtoc1461698401320">
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-CXFComponent">CXF Component</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-URIformat">URI format</a></li><li><a shape="rect" href="#BookInOnePage-Options">Options</a>
 <ul class="toc-indentation"><li><a shape="rect" href="#BookInOnePage-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/zip-dataformat.html
==============================================================================
--- websites/production/camel/content/zip-dataformat.html (original)
+++ websites/production/camel/content/zip-dataformat.html Tue Apr 26 19:22:20 2016
@@ -84,49 +84,16 @@
 	<tbody>
         <tr>
         <td valign="top" width="100%">
-<div class="wiki-content maincontent"><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.</p>
-
-<div class="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body">
-<p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none">
-This is subject to change in the future, to allow a streaming based solution to have a low memory footprint.</p></div></div> 
-
-<h3 id="ZipDataFormat-Options">Options</h3>
-
-<div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p> Option </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Default </p></th><th colspan="1" rowspan="1" class="confluenceTh"><p> Description </p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p> compressionLevel </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> null </p></td><td colspan="1" rowspan="1" class="confluenceTd"><p> To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline">
-<br clear="none" class="atl-forced-newline">
-If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code> </p></td></tr></tbody></table></div>
-
-
-<h3 id="ZipDataFormat-Marshal">Marshal</h3>
-
-<p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
+<div class="wiki-content maincontent"><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.</p><div class="confluence-information-macro confluence-information-macro-information"><p class="title">About using with Files</p><span class="aui-icon aui-icon-small aui-iconfont-info confluence-information-macro-icon"></span><div class="confluence-information-macro-body"><p>The Zip data format, does not (yet) have special support for files. Which means that when using big files, the entire file content is loaded into memory.<br clear="none"> This is subject to c
 hange in the future, to allow a streaming based solution to have a low memory footprint.</p></div></div><h3 id="ZipDataFormat-Options">Options</h3><div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Option</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Default</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p>compressionLevel</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>null</p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To specify a specific compression Level use <code>java.util.zip.Deflater</code> settings. The possible settings are&#160; <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.BEST_SPEED</code> <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.
 BEST_COMPRESSION</code> <br clear="none" class="atl-forced-newline"> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; - <code>Deflater.DEFAULT_COMPRESSION</code> <br clear="none" class="atl-forced-newline"> <br clear="none" class="atl-forced-newline"> If compressionLevel is not explicitly specified the compressionLevel employed is <code>Deflater.DEFAULT_COMPRESSION</code></p></td></tr></tbody></table></div><h3 id="ZipDataFormat-Marshal">Marshal</h3><p>In this example we marshal a regular text/XML payload to a compressed payload employing zip compression <code>Deflater.BEST_COMPRESSION</code> and send it an ActiveMQ queue called MY_QUEUE.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip(Deflater.BEST_COMPRESSION).to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-<p>Alternatively if you would like to use the default setting you could send it as</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
+</div></div><p>Alternatively if you would like to use the default setting you could send it as</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;direct:start&quot;).marshal().zip().to(&quot;activemq:queue:MY_QUEUE&quot;);
 ]]></script>
-</div></div>
-
-<h3 id="ZipDataFormat-Unmarshal">Unmarshal</h3>
-
-<p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p>
-<div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
-from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
+</div></div><h3 id="ZipDataFormat-Unmarshal">Unmarshal</h3><p>In this example we unmarshal&#160;a zipped&#160;payload from an ActiveMQ queue called MY_QUEUE&#160;to its original format,&#160;and forward it for&#160;processing&#160;to the UnZippedMessageProcessor. Note that the compression Level employed during the marshalling should be identical to the one employed during unmarshalling to avoid errors.</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[from(&quot;activemq:queue:MY_QUEUE&quot;).unmarshal().zip().process(new UnZippedMessageProcessor()); 
 ]]></script>
-</div></div>
-
-<h3 id="ZipDataFormat-Dependencies">Dependencies</h3>
-
-<p>This data format is provided in <strong>camel-core</strong> so no additional dependencies is needed.</p></div>
+</div></div><h3 id="ZipDataFormat-Dependencies">Dependencies</h3><p>This data format is provided in <strong>camel-core</strong> so no additional dependencies are needed.</p></div>
         </td>
         <td valign="top">
           <div class="navigation">