I’ve had good luck with this sequence:
1 Sequence ‘Main’ (exit on done)
1.1 Sequence ‘Try’ (exit on success)
1.11 Business Logic
1.12 Business Logic
1.13 Exit Sequence ‘Main’
1.2 Sequence ‘Catch’
1.21 Exception Handling
1.22 Exit Sequence ‘Main’
In this, if sequence 1.1 completes normally, then step 1.13 enacts and the flow is exited. If, for example, 1.12 fails, then the process exits 1.1, but since ‘Main’ requires completion the process proceeds to 1.2, where the exception handling stuff is placed.
Hope this helps!
#webMethods#Flow-and-Java-services#Integration-Server-and-ESB