Author: buildbot
Date: Mon Jan 5 11:21:19 2015
New Revision: 935119
Log:
Production update by buildbot for camel
Modified:
websites/production/camel/content/book-component-appendix.html
websites/production/camel/content/book-in-one-page.html
websites/production/camel/content/cache/main.pageCache
websites/production/camel/content/jetty.html
Modified: websites/production/camel/content/book-component-appendix.html
==============================================================================
--- websites/production/camel/content/book-component-appendix.html (original)
+++ websites/production/camel/content/book-component-appendix.html Mon Jan 5
11:21:19 2015
@@ -1415,11 +1415,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.rbtoc1420359518437 {padding: 0px;}
-div.rbtoc1420359518437 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1420359518437 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1420456681640 {padding: 0px;}
+div.rbtoc1420456681640 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1420456681640 li {margin-left: 0px;padding-left: 0px;}
-/*]]>*/</style></p><div class="toc-macro rbtoc1420359518437">
+/*]]>*/</style></p><div class="toc-macro rbtoc1420456681640">
<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>
@@ -6159,7 +6159,19 @@ from("jetty:http://localhost:{{port
<p>When you specify <code>localhost</code> in a
URL, Camel exposes the endpoint only on the local TCP/IP network interface, so
it cannot be accessed from outside the machine it operates on.</p><p>If you
need to expose a Jetty endpoint on a specific network interface, the numerical
IP address of this interface should be used as the host. If you need to expose
a Jetty endpoint on all network interfaces, the <code>0.0.0.0</code> address
should be used.</p>
</div>
</div>
-<p>Our business logic is implemented in the <code>MyBookService</code> class,
which accesses the HTTP request contents and then returns a response.<br
clear="none"> <strong>Note:</strong> The <code>assert</code> call appears in
this example, because the code is part of an unit test.</p><div class="code
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>To listen across an entire URI prefix, see <a
shape="rect" href="how-do-i-let-jetty-match-wildcards.html">How do I let Jetty
match wildcards</a>.</p>
+ </div>
+ </div>
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>If you actually want to expose routes by HTTP
and already have a Servlet, you should instead refer to the <a shape="rect"
href="https://cwiki.apache.org/confluence/display/CXF20DOC/Servlet+Transport">Servlet
Transport</a>.</p>
+ </div>
+ </div>
+<p> </p><p>Our business logic is implemented in the
<code>MyBookService</code> class, which accesses the HTTP request contents and
then returns a response.<br clear="none"> <strong>Note:</strong> The
<code>assert</code> call appears in this example, because the code is part of
an unit test.</p><div class="code panel pdl" style="border-width: 1px;"><div
class="codeContent panelContent pdl">
<script class="theme: Default; brush: java; gutter: false"
type="syntaxhighlighter"><![CDATA[
public class MyBookService implements Processor {
public void process(Exchange exchange) throws Exception {
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 Mon Jan 5 11:21:19
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.rbtoc1420359528541 {padding: 0px;}
-div.rbtoc1420359528541 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1420359528541 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1420456726470 {padding: 0px;}
+div.rbtoc1420456726470 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1420456726470 li {margin-left: 0px;padding-left: 0px;}
-/*]]>*/</style></p><div class="toc-macro rbtoc1420359528541">
+/*]]>*/</style></p><div class="toc-macro rbtoc1420456726470">
<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.rbtoc1420359528950 {padding: 0px;}
-div.rbtoc1420359528950 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1420359528950 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1420456730531 {padding: 0px;}
+div.rbtoc1420456730531 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1420456730531 li {margin-left: 0px;padding-left: 0px;}
-/*]]>*/</style><div class="toc-macro rbtoc1420359528950">
+/*]]>*/</style><div class="toc-macro rbtoc1420456730531">
<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>
@@ -19229,11 +19229,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.rbtoc1420359534104 {padding: 0px;}
-div.rbtoc1420359534104 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1420359534104 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1420456775617 {padding: 0px;}
+div.rbtoc1420456775617 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1420456775617 li {margin-left: 0px;padding-left: 0px;}
-/*]]>*/</style></p><div class="toc-macro rbtoc1420359534104">
+/*]]>*/</style></p><div class="toc-macro rbtoc1420456775617">
<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>
@@ -23973,7 +23973,19 @@ from("jetty:http://localhost:{{port
<p>When you specify <code>localhost</code> in a
URL, Camel exposes the endpoint only on the local TCP/IP network interface, so
it cannot be accessed from outside the machine it operates on.</p><p>If you
need to expose a Jetty endpoint on a specific network interface, the numerical
IP address of this interface should be used as the host. If you need to expose
a Jetty endpoint on all network interfaces, the <code>0.0.0.0</code> address
should be used.</p>
</div>
</div>
-<p>Our business logic is implemented in the <code>MyBookService</code> class,
which accesses the HTTP request contents and then returns a response.<br
clear="none"> <strong>Note:</strong> The <code>assert</code> call appears in
this example, because the code is part of an unit test.</p><div class="code
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>To listen across an entire URI prefix, see <a
shape="rect" href="how-do-i-let-jetty-match-wildcards.html">How do I let Jetty
match wildcards</a>.</p>
+ </div>
+ </div>
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>If you actually want to expose routes by HTTP
and already have a Servlet, you should instead refer to the <a shape="rect"
href="https://cwiki.apache.org/confluence/display/CXF20DOC/Servlet+Transport">Servlet
Transport</a>.</p>
+ </div>
+ </div>
+<p> </p><p>Our business logic is implemented in the
<code>MyBookService</code> class, which accesses the HTTP request contents and
then returns a response.<br clear="none"> <strong>Note:</strong> The
<code>assert</code> call appears in this example, because the code is part of
an unit test.</p><div class="code panel pdl" style="border-width: 1px;"><div
class="codeContent panelContent pdl">
<script class="theme: Default; brush: java; gutter: false"
type="syntaxhighlighter"><![CDATA[
public class MyBookService implements Processor {
public void process(Exchange exchange) throws Exception {
Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/camel/content/jetty.html
==============================================================================
--- websites/production/camel/content/jetty.html (original)
+++ websites/production/camel/content/jetty.html Mon Jan 5 11:21:19 2015
@@ -124,7 +124,19 @@ from("jetty:http://localhost:{{port
<p>When you specify <code>localhost</code> in a
URL, Camel exposes the endpoint only on the local TCP/IP network interface, so
it cannot be accessed from outside the machine it operates on.</p><p>If you
need to expose a Jetty endpoint on a specific network interface, the numerical
IP address of this interface should be used as the host. If you need to expose
a Jetty endpoint on all network interfaces, the <code>0.0.0.0</code> address
should be used.</p>
</div>
</div>
-<p>Our business logic is implemented in the <code>MyBookService</code> class,
which accesses the HTTP request contents and then returns a response.<br
clear="none"> <strong>Note:</strong> The <code>assert</code> call appears in
this example, because the code is part of an unit test.</p><div class="code
panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>To listen across an entire URI prefix, see <a
shape="rect" href="how-do-i-let-jetty-match-wildcards.html">How do I let Jetty
match wildcards</a>.</p>
+ </div>
+ </div>
+ <div class="aui-message success shadowed information-macro">
+ <span class="aui-icon icon-success">Icon</span>
+ <div class="message-content">
+ <p>If you actually want to expose routes by HTTP
and already have a Servlet, you should instead refer to the <a shape="rect"
href="https://cwiki.apache.org/confluence/display/CXF20DOC/Servlet+Transport">Servlet
Transport</a>.</p>
+ </div>
+ </div>
+<p> </p><p>Our business logic is implemented in the
<code>MyBookService</code> class, which accesses the HTTP request contents and
then returns a response.<br clear="none"> <strong>Note:</strong> The
<code>assert</code> call appears in this example, because the code is part of
an unit test.</p><div class="code panel pdl" style="border-width: 1px;"><div
class="codeContent panelContent pdl">
<script class="theme: Default; brush: java; gutter: false"
type="syntaxhighlighter"><![CDATA[
public class MyBookService implements Processor {
public void process(Exchange exchange) throws Exception {