Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: camel:destination --> camel:conduit

...

Code Block
xml
xml
titlehttp-conf:conduit Element
...
  <camelContext id="conduit_context" xmlns="http://activemq.apache.org/camel/schema/spring">
       <route>
           <from uri="direct:EndpointA" />
           <to uri="direct:EndpointB" />
       </route>
   </camelContext>

  <camel:conduit name="{http://widgets/widgetvendor.net}widgetSOAPPort.camel-conduit">
     <camel:camelContextRef>conduit_context</camel:camelContextRef>
  </camel:conduit>

  <camel:conduit name="*.camel-conduit">
  <!-- you can also using the wild card to specify the camel-conduit that you want to configure -->
    ...
  </camel:conduit>
...

The camel:destinationconduit element has a number of child elements that specify configuration information. They are described below.

...