I have an orchestration that is looping through a number of documents and performing mapping operations on them. Occasionally, one of the documents fails to map and throws an exception.
So let us say I have 10 documents, number 6 fails, I would like to have the 7 still process … indeed I would like to have 9/10 of them process.
Add a scope around your map and create an exception block for the scope. In the exception block catch the exception (maybe log it in the event log?), then have the processing continue as normal.