Hello,
I am having an issue when using the foreach loop to launch a workflow. I am iterating over a list of servers.
I have chosen the option to "Catch any exception and continue with the next iteration", but any time the child workflow throws an error, the entire workflow fails.... it does not continue to the next iteration.
What I would like to have happen is for the error to be caught, so I can report that the iteration failed for a specific target, while continuing to process the rest of the targets.
I considered trying to manually track success failure and suppress error-throwing in the child workflow, but I would rather not do that. The child workflow can be run independently, and I would like it to correctly report as successful/failed.
Any ideas?
David