I\'ve got a class that calls a SOAP interface, and gets an array of data back. However, if this request times out, it throws an exception. This is good. However, I want m
Try something like this:
var failed = true; while (failed) { try { salesOrdersArray = MagServ.salesOrderList(sessID, filter); failed = false; } catch { } }
Edit: Wow! Great minds think alike! :)