Versions Compared

Key

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

...

REST clients use query parameters to provide inputs for the relevant operation. These query parameters may be required to carry out the back-end operations either in a REST service or a proxy service. Let’s take a sample request and see how these parameters can be set in the outgoing message.

Code Block
languagenonebash
curl -v -H "Content-Type: application/xml" -d "<Customer><id>123</id><name>John</name></Customer>" http://localhost:8282/customerservice/customers?param1=value1&m2=value2

...