Versions Compared

Key

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

...

  1. Send a request like the following to the client.

    ant stockquote -Dtrpurl=http://localhost:8280/services/RoutingSlipProxy -Dsymbol=Foofoo
  2. Note that the steps are attached to the message header initially. Thereafter, processing will be decided based on the attached slip. You can observe process A and process C being logged in the ESB management console.

    You can also allow the message to flow through Process B by indicating a header in the following manner.

    Code Block
    languagehtml/xml
    <header xmlns:m1="http://services.samples"
                        name="m1:RoutingSlip"
                        value="Process_B"/>

    If you add the above header at the beginning, you will notice the message going through Process B as well.

...