how to invoke other flow based success of one flow in mule -


   <flow name="flow1">     <http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:8080/healthinsurance/save" method="post" doc:name="http" />    </flow     <flow name="flow2">        <http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:8080/healthinsurance/list" method="post" doc:name="http" />    </flow 

i have above flow in mule. flow1 successful response means invoke flow2, otherwise any exception in flow1 means, no need invoke flow2. important. have idea requirement?

since using http outbound in flow1.. can invoke flow2 when http response status 200 success :- <when expression="#[message.inboundproperties['http.status'] == '200']">

mule - unable route message based on http.status

.. , can use exception strategy log exception


Comments