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 2013/04/22 22:27:00 UTC

svn commit: r859502 [6/6] - in /websites/production/camel/content: ./ 2007/08/18/ 2007/08/20/ 2007/10/01/ 2007/10/28/ 2008/04/08/ 2008/04/22/ 2008/04/28/ 2008/07/22/ 2008/10/31/ 2009/01/19/ 2009/02/03/ 2009/02/17/ 2009/03/17/ 2009/05/19/ 2009/06/16/ 20...

Modified: websites/production/camel/content/tutorial-jmsremoting.html
==============================================================================
--- websites/production/camel/content/tutorial-jmsremoting.html (original)
+++ websites/production/camel/content/tutorial-jmsremoting.html Mon Apr 22 20:26:56 2013
@@ -233,7 +233,7 @@ First we need to do the standard scheme 
          http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
          http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
-         http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.5.0.xsd">
+         http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">
 </pre>
 </div></div>
 <p>We use Spring annotations for doing IoC dependencies and its component-scan features comes to the rescue as it scans for spring annotations in the given package name:</p>
@@ -257,7 +257,7 @@ Notice that we also have enabled the <a 
 </div></div>
 <p>The ActiveMQ JMS broker is also configured in this xml file. We set it up to listen on TCP port 61610.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
-<pre class="code-xml"><span class="code-tag"><span class="code-comment">&lt;!-- lets configure the ActiveMQ JMS broker server to listen on TCP 61610 --&gt;</span></span>
+<pre class="code-xml"><span class="code-tag"><span class="code-comment">&lt;!-- lets configure the ActiveMQ JMS broker server --&gt;</span></span>
 <span class="code-tag">&lt;broker:broker useJmx=<span class="code-quote">"true"</span> persistent=<span class="code-quote">"false"</span> brokerName=<span class="code-quote">"myBroker"</span>&gt;</span>
   <span class="code-tag">&lt;broker:transportConnectors&gt;</span>
     <span class="code-tag"><span class="code-comment">&lt;!-- expose a VM transport for in-JVM transport between AMQ and Camel on the server side --&gt;</span></span>
@@ -306,8 +306,10 @@ The server is started with:<br clear="no
 <pre class="code-xml">&lt;beans xmlns=<span class="code-quote">"http://www.springframework.org/schema/beans"</span>
        <span class="code-keyword">xmlns:xsi</span>=<span class="code-quote">"http://www.w3.org/2001/XMLSchema-instance"</span>
        <span class="code-keyword">xmlns:camel</span>=<span class="code-quote">"http://camel.apache.org/schema/spring"</span>
+       <span class="code-keyword">xmlns:context</span>=<span class="code-quote">"http://www.springframework.org/schema/context"</span>
        xsi:schemaLocation="
          http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
+         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
          http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"&gt;
 </pre>
 </div></div>
@@ -320,7 +322,7 @@ The server is started with:<br clear="no
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml"><span class="code-tag"><span class="code-comment">&lt;!-- Camel JMSProducer to be able to send messages to a remote Active MQ server --&gt;</span></span>
 <span class="code-tag">&lt;bean id=<span class="code-quote">"jms"</span> class=<span class="code-quote">"org.apache.activemq.camel.component.ActiveMQComponent"</span>&gt;</span>
-  <span class="code-tag">&lt;property name=<span class="code-quote">"brokerURL"</span> value=<span class="code-quote">"tcp://localhost:61610"</span>/&gt;</span>
+  <span class="code-tag">&lt;property name=<span class="code-quote">"brokerURL"</span> value=<span class="code-quote">"tcp://localhost:${tcp.port}"</span>/&gt;</span>
 <span class="code-tag">&lt;/bean&gt;</span>
 </pre>
 </div></div>
@@ -409,7 +411,7 @@ The server is started with:<br clear="no
 </span>    <span class="code-comment">// we use the in out pattern <span class="code-keyword">for</span> a <span class="code-keyword">synchronized</span> exchange where we expect a response
 </span>    Exchange exchange = endpoint.createExchange(ExchangePattern.InOut);
     <span class="code-comment">// set the input on the in body
-</span>    <span class="code-comment">// must you correct type to match the expected type of an <span class="code-object">Integer</span> object
+</span>    <span class="code-comment">// must be correct type to match the expected type of an <span class="code-object">Integer</span> object
 </span>    exchange.getIn().setBody(11);
 
     <span class="code-comment">// to send the exchange we need an producer to <span class="code-keyword">do</span> it <span class="code-keyword">for</span> us

Modified: websites/production/camel/content/uris.html
==============================================================================
--- websites/production/camel/content/uris.html (original)
+++ websites/production/camel/content/uris.html Mon Apr 22 20:26:56 2013
@@ -792,7 +792,7 @@ scalate:templateName 
 <pre class="code-xml">
 unmarshal(edi)
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> GPL </td><td colspan="1" rowspan="1" class="confluenceTd"> For working with EDI parsing using the <a shape="rect" class="external-link" href="http://milyn.codehaus.org/Smooks" rel="nofollow">Smooks library</a>. This component is <b>deprecated</b> as Smooks now provides <a shape="rect" class="external-link" href="http://www.smooks.org/mediawiki/index.php?title=V1.5:Smooks_v1.5_User_Guide#Apache_Camel_Integration" rel="nofollow">Camel integration out of the box</a>  </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <span class="error">[Spring Neo4j]</span> / camel-spring-neo4j in <a shape="rect" class="external-link" href="http://code.google.com/p/camel-extra/" rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> GPL </td><td colspan="1" rowspan="1" class="confluenceTd"> For working with EDI parsing using the <a shape="rect" class="external-link" href="http://milyn.codehaus.org/Smooks" rel="nofollow">Smooks library</a>. This component is <b>deprecated</b> as Smooks now provides <a shape="rect" class="external-link" href="http://www.smooks.org/mediawiki/index.php?title=V1.5:Smooks_v1.5_User_Guide#Apache_Camel_Integration" rel="nofollow">Camel integration out of the box</a>  </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" href="spring-neo4j.html" title="Spring Neo4j">Spring Neo4j</a> / camel-spring-neo4j in <a shape="rect" class="external-link" href="http://code.google.com/p/camel-extra/" rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <pre class="code-xml">
 spring-neo4j:http://hostname[:port]/database[?options]

Modified: websites/production/camel/content/using-camel-questions.html
==============================================================================
--- websites/production/camel/content/using-camel-questions.html (original)
+++ websites/production/camel/content/using-camel-questions.html Mon Apr 22 20:26:56 2013
@@ -78,7 +78,7 @@
 <div class="wiki-content maincontent">
 <p>Questions on using Apache Camel</p>
 
-<ul><li><a shape="rect" href="classloader-issue-of-servicemix-camel-component.html" title="Classloader issue of servicemix-camel component">Classloader issue of servicemix-camel component</a></li><li><a shape="rect" href="ho-do-i-specify-which-method-to-use-when-using-beans-in-routes.html" title="Ho do I specify which method to use when using beans in routes?">Ho do I specify which method to use when using beans in routes?</a></li><li><a shape="rect" href="how-can-i-create-a-custom-component-or-endpoint.html" title="How can I create a custom component or endpoint">How can I create a custom component or endpoint</a></li><li><a shape="rect" href="how-can-i-get-the-remote-connection-ip-address-from-the-camel-cxf-consumer-.html" title="How can I get the remote connection IP address from the camel-cxf consumer ?">How can I get the remote connection IP address from the camel-cxf consumer ?</a></li><li><a shape="rect" href="how-can-i-stop-a-route-from-a-route.html" title="How can I
  stop a route from a route">How can I stop a route from a route</a></li><li><a shape="rect" href="how-can-webservice-clients-see-remote-faults-with-stacktraces-when-using-camel-cxf.html" title="How can webservice clients see remote faults with stacktraces when using camel-cxf">How can webservice clients see remote faults with stacktraces when using camel-cxf</a></li><li><a shape="rect" href="how-does-camel-look-up-beans-and-endpoints.html" title="How does Camel look up beans and endpoints">How does Camel look up beans and endpoints</a></li><li><a shape="rect" href="how-do-i-add-a-component.html" title="How do I add a component">How do I add a component</a></li><li><a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">How do I change the logging</a></li><li><a shape="rect" href="how-do-i-configure-endpoints.html" title="How do I configure endpoints">How do I configure endpoints</a></li><li><a shape="rect" href="how-do-i-configure-the-defa
 ult-maximum-cache-size-for-producercache-or-producertemplate.html" title="How do I configure the default maximum cache size for ProducerCache or ProducerTemplate">How do I configure the default maximum cache size for ProducerCache or ProducerTemplate</a></li><li><a shape="rect" href="how-do-i-configure-the-maximum-endpoint-cache-size-for-camelcontext.html" title="How do I configure the maximum endpoint cache size for CamelContext">How do I configure the maximum endpoint cache size for CamelContext</a></li><li><a shape="rect" href="how-do-i-debug-my-route.html" title="How do I debug my route">How do I debug my route</a></li><li><a shape="rect" href="how-do-i-disable-jmx.html" title="How do I disable JMX">How do I disable JMX</a></li><li><a shape="rect" href="how-do-i-enable-streams-when-debug-logging-messages-in-camel.html" title="How do I enable streams when debug logging messages in Camel">How do I enable streams when debug logging messages in Camel</a></li><li><a shape="re
 ct" href="how-do-i-handle-failures-when-consuming-for-example-from-a-ftp-server.html" title="How do I handle failures when consuming for example from a FTP server">How do I handle failures when consuming for example from a FTP server</a></li><li><a shape="rect" href="how-do-i-import-routes-from-other-xml-files.html" title="How do I import routes from other XML files">How do I import routes from other XML files</a></li><li><a shape="rect" href="how-do-i-let-jetty-match-wildcards.html" title="How do I let Jetty match wildcards">How do I let Jetty match wildcards</a></li><li><a shape="rect" href="how-do-i-name-my-routes.html" title="How do I name my routes?">How do I name my routes?</a></li><li><a shape="rect" href="how-do-i-restart-camelcontext.html" title="How do I restart CamelContext">How do I restart CamelContext</a></li><li><a shape="rect" href="how-do-i-retrieve-the-thrown-exception-during-processing-an-exchange.html" title="How do I retrieve the thrown Exception during 
 processing an Exchange">How do I retrieve the thrown Exception during processing an Exchange</a></li><li><a shape="rect" href="how-do-i-retry-failed-messages-forever.html" title="How do I retry failed messages forever">How do I retry failed messages forever</a></li><li><a shape="rect" href="how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.html" title="How do I retry processing a message from a certain point back or an entire route">How do I retry processing a message from a certain point back or an entire route</a></li><li><a shape="rect" href="how-do-i-reuse-the-contexttestsupport-class-in-my-unit-tests.html" title="How do I reuse the ContextTestSupport class in my unit tests">How do I reuse the ContextTestSupport class in my unit tests</a></li><li><a shape="rect" href="how-do-i-run-activemq-and-camel-in-jboss.html" title="How do I run ActiveMQ and Camel in JBoss">How do I run ActiveMQ and Camel in JBoss</a></li><li><a shape="rect" href="how-
 do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html" title="How do I set the max chars when debug logging messages in Camel">How do I set the max chars when debug logging messages in Camel</a></li><li><a shape="rect" href="how-do-i-specify-time-period-in-a-human-friendly-syntax.html" title="How do I specify time period in a human friendly syntax">How do I specify time period in a human friendly syntax</a></li><li><a shape="rect" href="how-do-i-use-a-big-uber-jar.html" title="How do I use a big (uber) JAR?">How do I use a big (uber) JAR?</a></li><li><a shape="rect" href="how-do-i-use-camel-inside-servicemix.html" title="How do I use Camel inside ServiceMix">How do I use Camel inside ServiceMix</a></li><li><a shape="rect" href="how-do-i-use-dynamic-uri-in-to.html" title="How do I use dynamic URI in To">How do I use dynamic URI in To</a></li><li><a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property P
 laceholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a></li><li><a shape="rect" href="how-do-i-use-uris-with-parameters-in-xml.html" title="How do I use URIs with parameters in XML">How do I use URIs with parameters in XML</a></li><li><a shape="rect" href="how-do-i-write-a-custom-processor-which-sends-multiple-messages.html" title="How do I write a custom Processor which sends multiple messages">How do I write a custom Processor which sends multiple messages</a></li><li><a shape="rect" href="how-should-i-invoke-my-pojos-or-spring-services.html" title="How should I invoke my POJOs or Spring Services">How should I invoke my POJOs or Spring Services</a></li><li><a shape="rect" href="how-should-i-package-applications-using-camel-and-activemq.html" title="How should I package applications using Camel and ActiveMQ">How should I package applications using Camel and ActiveMQ</a></li><li><a shape="rect" href="how-to-avoid-importing-bunch-of-cxf-packages
 -when-start-up-the-camel-cxf-endpoint-from-osgi-platform-.html" title="How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?">How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?</a></li><li><a shape="rect" href="how-to-avoid-sending-some-or-all-message-headers.html" title="How to avoid sending some or all message headers">How to avoid sending some or all message headers</a></li><li><a shape="rect" href="how-to-define-a-static-camel-converter-method-in-scala.html" title="How to define a static camel converter method in Scala">How to define a static camel converter method in Scala</a></li><li><a shape="rect" href="how-to-remove-the-http-protocol-headers-in-the-camel-message.html" title="How to remove the http protocol headers in the camel message?">How to remove the http protocol headers in the camel message?</a></li><li><a shape="rect" href="how-to-send-the-same-message-to-mult
 iple-endpoints.html" title="How to send the same message to multiple endpoints">How to send the same message to multiple endpoints</a></li><li><a shape="rect" href="how-to-switch-the-cxf-consumer-between-http-and-https-without-touching-the-spring-configuration.html" title="How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration">How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration</a></li><li><a shape="rect" href="how-to-use-extra-camel-componets-in-servicemix-camel.html" title="How to use extra camel componets in servicemix-camel">How to use extra camel componets in servicemix-camel</a></li><li><a shape="rect" href="how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.html" title="How to validate the camel-1.x context xml from Apache Camel web site?">How to validate the camel-1.x context xml from Apache Camel web site?</a></li><li><a shape="rect" href="is-there-an-ide.html" tit
 le="Is there an IDE">Is there an IDE</a></li><li><a shape="rect" href="should-i-deploy-camel-inside-the-activemq-broker-or-in-another-application.html" title="Should I deploy Camel inside the ActiveMQ broker or in another application">Should I deploy Camel inside the ActiveMQ broker or in another application</a></li><li><a shape="rect" href="using-camel-core-testsjar.html" title="Using camel-core-tests.jar">Using camel-core-tests.jar</a></li><li><a shape="rect" href="using-getin-or-getout-methods-on-exchange.html" title="Using getIn or getOut methods on Exchange">Using getIn or getOut methods on Exchange</a></li><li><a shape="rect" href="why-can-i-not-use-when-or-otherwise-in-a-java-camel-route.html" title="Why can I not use when or otherwise in a Java Camel route">Why can I not use when or otherwise in a Java Camel route</a></li><li><a shape="rect" href="why-does-ftp-component-not-download-any-files.html" title="Why does FTP component not download any files?">Why does FTP c
 omponent not download any files?</a></li><li><a shape="rect" href="why-does-my-file-consumer-not-pick-up-the-file-and-how-do-i-let-the-file-consumer-use-the-camel-error-handler.html" title="Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?">Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?</a></li><li><a shape="rect" href="why-does-useoriginalmessage-with-error-handler-not-work-as-expected.html" title="Why does useOriginalMessage with error handler not work as expected?">Why does useOriginalMessage with error handler not work as expected?</a></li><li><a shape="rect" href="why-do-my-message-lose-its-headers-during-routing.html" title="Why do my message lose its headers during routing?">Why do my message lose its headers during routing?</a></li><li><a shape="rect" href="why-is-my-message-body-empty.html" title="Why is my message body empty?">Why is my mes
 sage body empty?</a></li><li><a shape="rect" href="why-is-my-processor-not-showing-up-in-jconsole.html" title="Why is my processor not showing up in JConsole">Why is my processor not showing up in JConsole</a></li><li><a shape="rect" href="why-is-the-exception-null-when-i-use-onexception.html" title="Why is the exception null when I use onException">Why is the exception null when I use onException</a></li><li><a shape="rect" href="why-use-multiple-camelcontext.html" title="Why use multiple CamelContext">Why use multiple CamelContext</a></li></ul></div>
+<ul><li><a shape="rect" href="classloader-issue-of-servicemix-camel-component.html" title="Classloader issue of servicemix-camel component">Classloader issue of servicemix-camel component</a></li><li><a shape="rect" href="ho-do-i-specify-which-method-to-use-when-using-beans-in-routes.html" title="Ho do I specify which method to use when using beans in routes?">Ho do I specify which method to use when using beans in routes?</a></li><li><a shape="rect" href="how-can-i-create-a-custom-component-or-endpoint.html" title="How can I create a custom component or endpoint">How can I create a custom component or endpoint</a></li><li><a shape="rect" href="how-can-i-get-the-remote-connection-ip-address-from-the-camel-cxf-consumer-.html" title="How can I get the remote connection IP address from the camel-cxf consumer ?">How can I get the remote connection IP address from the camel-cxf consumer ?</a></li><li><a shape="rect" href="how-can-i-stop-a-route-from-a-route.html" title="How can I
  stop a route from a route">How can I stop a route from a route</a></li><li><a shape="rect" href="how-can-webservice-clients-see-remote-faults-with-stacktraces-when-using-camel-cxf.html" title="How can webservice clients see remote faults with stacktraces when using camel-cxf">How can webservice clients see remote faults with stacktraces when using camel-cxf</a></li><li><a shape="rect" href="how-does-camel-look-up-beans-and-endpoints.html" title="How does Camel look up beans and endpoints">How does Camel look up beans and endpoints</a></li><li><a shape="rect" href="how-do-i-add-a-component.html" title="How do I add a component">How do I add a component</a></li><li><a shape="rect" href="how-do-i-change-the-logging.html" title="How do I change the logging">How do I change the logging</a></li><li><a shape="rect" href="how-do-i-configure-endpoints.html" title="How do I configure endpoints">How do I configure endpoints</a></li><li><a shape="rect" href="how-do-i-configure-password
 -options-on-camel-endpoints-without-the-value-being-encoded.html" title="How do I configure password options on Camel endpoints without the value being encoded">How do I configure password options on Camel endpoints without the value being encoded</a></li><li><a shape="rect" href="how-do-i-configure-the-default-maximum-cache-size-for-producercache-or-producertemplate.html" title="How do I configure the default maximum cache size for ProducerCache or ProducerTemplate">How do I configure the default maximum cache size for ProducerCache or ProducerTemplate</a></li><li><a shape="rect" href="how-do-i-configure-the-maximum-endpoint-cache-size-for-camelcontext.html" title="How do I configure the maximum endpoint cache size for CamelContext">How do I configure the maximum endpoint cache size for CamelContext</a></li><li><a shape="rect" href="how-do-i-debug-my-route.html" title="How do I debug my route">How do I debug my route</a></li><li><a shape="rect" href="how-do-i-disable-jmx.ht
 ml" title="How do I disable JMX">How do I disable JMX</a></li><li><a shape="rect" href="how-do-i-enable-streams-when-debug-logging-messages-in-camel.html" title="How do I enable streams when debug logging messages in Camel">How do I enable streams when debug logging messages in Camel</a></li><li><a shape="rect" href="how-do-i-handle-failures-when-consuming-for-example-from-a-ftp-server.html" title="How do I handle failures when consuming for example from a FTP server">How do I handle failures when consuming for example from a FTP server</a></li><li><a shape="rect" href="how-do-i-import-routes-from-other-xml-files.html" title="How do I import routes from other XML files">How do I import routes from other XML files</a></li><li><a shape="rect" href="how-do-i-let-jetty-match-wildcards.html" title="How do I let Jetty match wildcards">How do I let Jetty match wildcards</a></li><li><a shape="rect" href="how-do-i-name-my-routes.html" title="How do I name my routes?">How do I name my
  routes?</a></li><li><a shape="rect" href="how-do-i-restart-camelcontext.html" title="How do I restart CamelContext">How do I restart CamelContext</a></li><li><a shape="rect" href="how-do-i-retrieve-the-thrown-exception-during-processing-an-exchange.html" title="How do I retrieve the thrown Exception during processing an Exchange">How do I retrieve the thrown Exception during processing an Exchange</a></li><li><a shape="rect" href="how-do-i-retry-failed-messages-forever.html" title="How do I retry failed messages forever">How do I retry failed messages forever</a></li><li><a shape="rect" href="how-do-i-retry-processing-a-message-from-a-certain-point-back-or-an-entire-route.html" title="How do I retry processing a message from a certain point back or an entire route">How do I retry processing a message from a certain point back or an entire route</a></li><li><a shape="rect" href="how-do-i-reuse-the-contexttestsupport-class-in-my-unit-tests.html" title="How do I reuse the Cont
 extTestSupport class in my unit tests">How do I reuse the ContextTestSupport class in my unit tests</a></li><li><a shape="rect" href="how-do-i-run-activemq-and-camel-in-jboss.html" title="How do I run ActiveMQ and Camel in JBoss">How do I run ActiveMQ and Camel in JBoss</a></li><li><a shape="rect" href="how-do-i-set-the-max-chars-when-debug-logging-messages-in-camel.html" title="How do I set the max chars when debug logging messages in Camel">How do I set the max chars when debug logging messages in Camel</a></li><li><a shape="rect" href="how-do-i-specify-time-period-in-a-human-friendly-syntax.html" title="How do I specify time period in a human friendly syntax">How do I specify time period in a human friendly syntax</a></li><li><a shape="rect" href="how-do-i-use-a-big-uber-jar.html" title="How do I use a big (uber) JAR?">How do I use a big (uber) JAR?</a></li><li><a shape="rect" href="how-do-i-use-camel-inside-servicemix.html" title="How do I use Camel inside ServiceMix">Ho
 w do I use Camel inside ServiceMix</a></li><li><a shape="rect" href="how-do-i-use-dynamic-uri-in-to.html" title="How do I use dynamic URI in To">How do I use dynamic URI in To</a></li><li><a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a></li><li><a shape="rect" href="how-do-i-use-uris-with-parameters-in-xml.html" title="How do I use URIs with parameters in XML">How do I use URIs with parameters in XML</a></li><li><a shape="rect" href="how-do-i-write-a-custom-processor-which-sends-multiple-messages.html" title="How do I write a custom Processor which sends multiple messages">How do I write a custom Processor which sends multiple messages</a></li><li><a shape="rect" href="how-should-i-invoke-my-pojos-or-spring-services.html" title="How should I invoke my POJOs or Spring Services">How should I invoke my POJOs or Spring Ser
 vices</a></li><li><a shape="rect" href="how-should-i-package-applications-using-camel-and-activemq.html" title="How should I package applications using Camel and ActiveMQ">How should I package applications using Camel and ActiveMQ</a></li><li><a shape="rect" href="how-to-avoid-importing-bunch-of-cxf-packages-when-start-up-the-camel-cxf-endpoint-from-osgi-platform-.html" title="How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?">How to avoid importing bunch of cxf packages when start up the camel-cxf endpoint from OSGi platform ?</a></li><li><a shape="rect" href="how-to-avoid-sending-some-or-all-message-headers.html" title="How to avoid sending some or all message headers">How to avoid sending some or all message headers</a></li><li><a shape="rect" href="how-to-define-a-static-camel-converter-method-in-scala.html" title="How to define a static camel converter method in Scala">How to define a static camel converter method in 
 Scala</a></li><li><a shape="rect" href="how-to-remove-the-http-protocol-headers-in-the-camel-message.html" title="How to remove the http protocol headers in the camel message?">How to remove the http protocol headers in the camel message?</a></li><li><a shape="rect" href="how-to-send-the-same-message-to-multiple-endpoints.html" title="How to send the same message to multiple endpoints">How to send the same message to multiple endpoints</a></li><li><a shape="rect" href="how-to-switch-the-cxf-consumer-between-http-and-https-without-touching-the-spring-configuration.html" title="How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration">How to switch the CXF consumer between HTTP and HTTPS without touching the Spring configuration</a></li><li><a shape="rect" href="how-to-use-extra-camel-componets-in-servicemix-camel.html" title="How to use extra camel componets in servicemix-camel">How to use extra camel componets in servicemix-camel</a></l
 i><li><a shape="rect" href="how-to-validate-the-camel-1x-context-xml-from-apache-camel-web-site.html" title="How to validate the camel-1.x context xml from Apache Camel web site?">How to validate the camel-1.x context xml from Apache Camel web site?</a></li><li><a shape="rect" href="is-there-an-ide.html" title="Is there an IDE">Is there an IDE</a></li><li><a shape="rect" href="should-i-deploy-camel-inside-the-activemq-broker-or-in-another-application.html" title="Should I deploy Camel inside the ActiveMQ broker or in another application">Should I deploy Camel inside the ActiveMQ broker or in another application</a></li><li><a shape="rect" href="using-camel-core-testsjar.html" title="Using camel-core-tests.jar">Using camel-core-tests.jar</a></li><li><a shape="rect" href="using-getin-or-getout-methods-on-exchange.html" title="Using getIn or getOut methods on Exchange">Using getIn or getOut methods on Exchange</a></li><li><a shape="rect" href="why-cant-i-use-sign-in-my-password
 .html" title="Why can't I use + sign in my password">Why can't I use + sign in my password</a></li><li><a shape="rect" href="why-can-i-not-use-when-or-otherwise-in-a-java-camel-route.html" title="Why can I not use when or otherwise in a Java Camel route">Why can I not use when or otherwise in a Java Camel route</a></li><li><a shape="rect" href="why-does-ftp-component-not-download-any-files.html" title="Why does FTP component not download any files?">Why does FTP component not download any files?</a></li><li><a shape="rect" href="why-does-my-file-consumer-not-pick-up-the-file-and-how-do-i-let-the-file-consumer-use-the-camel-error-handler.html" title="Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?">Why does my file consumer not pick up the file, and how do I let the file consumer use the Camel error handler?</a></li><li><a shape="rect" href="why-does-useoriginalmessage-with-error-handler-not-work-as-expected.html
 " title="Why does useOriginalMessage with error handler not work as expected?">Why does useOriginalMessage with error handler not work as expected?</a></li><li><a shape="rect" href="why-do-my-message-lose-its-headers-during-routing.html" title="Why do my message lose its headers during routing?">Why do my message lose its headers during routing?</a></li><li><a shape="rect" href="why-is-my-message-body-empty.html" title="Why is my message body empty?">Why is my message body empty?</a></li><li><a shape="rect" href="why-is-my-processor-not-showing-up-in-jconsole.html" title="Why is my processor not showing up in JConsole">Why is my processor not showing up in JConsole</a></li><li><a shape="rect" href="why-is-the-exception-null-when-i-use-onexception.html" title="Why is the exception null when I use onException">Why is the exception null when I use onException</a></li><li><a shape="rect" href="why-use-multiple-camelcontext.html" title="Why use multiple CamelContext">Why use mult
 iple CamelContext</a></li></ul></div>
         </td>
         <td valign="top">
           <div class="navigation">