December 2013
Intermediate to advanced
424 pages
9h 7m
English
The Camel CXF Component allows a Camel route to act as a SOAP (or REST) web service listener. This allows you to create web service frontends for other systems, including acting as a web service proxy—something that is discussed in-depth in the Web service proxying recipe.
This recipe will show you the basic steps of exposing a Camel route as a web service consumer/listener.
This recipe assumes that you have a project with JAX-WS artifacts created as shown in the Generating the service stubs from a WSDL recipe. To use the generated API, you need to include a dependency to that project in your build:
<dependency> <groupId>org.camelcookbook.examples</groupId> <artifactId>ws-payments-api</artifactId> ...
Read now
Unlock full access