Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-cxf</artifactId>
    <version>x.x.x</version>
    <\!-\- use the same version as your Camel core version \-->
</dependency>

URI format

Code Block
cxf:bean:cxfEndpoint\[?options\]

Where cxfEndpoint represents a bean ID that references a bean in the Spring bean registry. With this URI format, most of the endpoint details are specified in the bean definition.

Code Block
cxf://someAddress\[?options\]

Where someAddress specifies the CXF endpoint's address. With this URI format, most of the endpoint details are specified using options.

...