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
It its not gernally a good idead to use exceptions as control flow, but this will do what you requested.
bool Caught = true; while (Caught) try { salesOrdersArray = MagServ.salesOrderList(sessID, filter); Caught = false; } catch { Caught = true; }