...
Code Block | ||
---|---|---|
| ||
<!-- Introduction to the Message Store --> <definitions xmlns="http://ws.apache.org/ns/synapse"> <sequence name="fault"> <log level="full"> <property name="MESSAGE" value="Executing default 'fault' sequence" /> <property name="ERROR_CODE" expression="get-property('ERROR_CODE')" /> <property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')" /> </log> <drop<drop /> </sequence> <sequence name="onStoreSequence"> <log> <property name="On-Store" value="Storing message" /> </log> </sequence> <sequence name="main"> <in> <log level="full" /> <property name="FORCE_SC_ACCEPTED" value="true" scope="axis2" /> <store messageStore="MyStore" sequence="onStoreSequence" /> </in> <description>The main sequence for the message mediation</description> </sequence> <messageStore name="MyStore" /> </definitions> |
Prerequisites:
Start the configuration numbered 700: i.e. wso2esb-samples -sn 700
...