Versions Compared

Key

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

One thing you'll often need to do when developing services, is to develop a new version while keeping the old version running. This guide shows how to develop a simple service router that will scan the incoming message then direct the message to the appropriate service version.

For more complex requirements you might also wish to check out Apache Camel for full support for the Enterprise Integration Patterns with CXF

...

Among many different possible implementations of service routing, one simple way ("simple" in terms of amount of codes code you have to write, but it does require a certain extent of familiarity with CXF internal architecturesarchitecture) to do this is by writing a CXF interceptor that acts as a routing mediator.

...