Versions Compared

Key

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

...

The URI parameters get mapped to the XML document according to its schema and the WSDL 2 rules. So if you access the URL /customers/123 CXF will actually synthesize an incoming XML document like this:

Code Block
xml
xml
<getCustomer><id>123<getCustomer><id>123</id></getCustomer>

The databinding layer will then convert this into the GetCustomer object. Lets move on to a more complex example - a PUT operation which updates the customer:

...