All docs
This doc
...
Code Block | ||||
---|---|---|---|---|
| ||||
<?xml version="1.0" encoding="UTF-8"?> <definitions xmlns="http://ws.apache.org/ns/synapse"> <!-- the SimpleURLRegistry allows access to a URL based registry (e.g. file:/// or http://) --> <registry provider="org.apache.synapse.registry.url.SimpleURLRegistry"> <!-- the root property of the simple URL registry helps resolve a resource URL as root + key --> <parameter name=ESB_Home/repository/samples/resources/<></parameter> <!-- all resources loaded from the URL registry would be cached for this number of milli seconds --> <parameter name="cachableDuration">15000</parameter> </registry> <sequence name="main" onError="errorHandler"> <in> <property name="OUT_ONLY" value="true" /> <property name="FORCE_SC_ACCEPTED" scope="axis2" value="true" /> <!--Dynamic Reclipient List--> <send> <endpoint> <recipientlist> <endpoints value="{get-property('EP_LIST')}" max-cache="20" /> </recipientlist> </endpoint> </send> <drop/> </in> </sequence> <sequence name="errorHandler"> <makefault response="true"> <code xmlns:tns="http://www.w3.org/2003/05/soap-envelope" value="tns:Receiver"/> <reason value="COULDN'T SEND THE MESSAGE TO THE SERVER."/> </makefault> <send/> </sequence> </definitions> |
...