i am inserting no of tables at a time using WSO2dss and Wso2 ESB . those are dependent tables how we can ROLLBACK if one transaction failed.my issue is i am inserting EMP1,EMP2,EMP3 my data inserted properly in EMP1 and EMP2 error occured in while inserting in EMP3 how i can do this using WSO2 ..in Oracle we has NONXAENABLEDS
<sequence>
<payloadFactory>
<format>
<p:insert_emp2_operation xmlns:p="http://ws.wso2.org/dataservice">
<xs:e_device xmlns:xs="http://ws.wso2.org/dataservice">$1</xs:e_device>
<xs:e_amount xmlns:xs="http://ws.wso2.org/dataservice">5000</xs:e_amount>
<xs:e_no xmlns:xs="http://ws.wso2.org/dataservice">450</xs:e_no>
</p:insert_emp2_operation>
</format>
<args>
<arg expression="//e_device/text()"/>
</args>
</payloadFactory>
<send>
<endpoint>
<address uri="http://192.168.1.201:9764/services/emp2_DataService/" format="soap11"/>
</endpoint>
</send>
</sequence>
</target>
as same like in some other tables How i Can Rollback this all