Hello guys,
I have an orchestraction that processes and sends a message to a file location. What I want to do is that if the send fails, call a webservice to update a flag in database table. If the send is successful, I call another method exposed by the webservice to update another table.
So, here is what I did. I put my \”send\” shape within a scope that has an exception block of type \”DeliveryFailureException\”. In this exception block, I call the webservice to update a flag. This works perfect except that the orchestration continues to process whatever comes after teh exception block.
Shouldn’t it have stopped processing after executing whatever was in the exception block? Please advise….
Thanks.