All docs
This doc
...
Code Block | ||
---|---|---|
| ||
<definitions xmlns="http://ws.apache.org/ns/synapse"> <sequence name="myFaultHandler"> <makefault> <code value="tns:Receiver" xmlns:tns="http://www.w3.org/2003/05/soap-envelope"/> <reason expression="get-property('ERROR_MESSAGE')"/> </makefault> <property name="RESPONSE" value="true"/> <header name="To" expression="get-property('ReplyTo')"/> <send/> </sequence> <sequence name="main" onError="myFaultHandler"> <in> <switch source="//m0:getQuote/m0:request/m0:symbol" xmlns:m0="http://services.samples"> <case xmlns:m0regex="http://services.samples">MSFT"> <send> <case regex="MSFT"> <endpoint> <send> <endpoint><address<address uri="http://bogus:9000/services/NonExistentStockQuoteService"/><> </endpoint> </send> </case> <case regex="SUN"> <send> <endpoint> <endpoint><address <address uri="http://localhost:9009/services/NonExistentStockQuoteService"/><> </endpoint> </send> </case> </switch> <drop/> </in> <out> <send/> </out> </sequence> </definitions> |
...