Versions Compared

Key

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

...

As with other mediators, after adding the drop mediator to a sequence, you can click its up and down arrows to move its location in the sequence.

Info
titleNote

You can configure the mediator using XML. Click switch to source view in the Mediator window.

Image Added

Example

Code Block
XML
XML
<definitions xmlns="http://ws.apache.org/ns/synapse">
    <filter source="get-property('To')" regex=".*/StockQuote.*">
        <send>
            <endpoint>
                <address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
            </endpoint>
        </send>
        <drop/>
    </filter>
    <send/>
</definitions>

...