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
bool repeat = true; while (repeat) { try { salesOrdersArray = MagServ.salesOrderList(sessID, filter); repeat = false; } catch { } }