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
Although I would NOT recommend you to do this for an infinite number of times, you could make a separate function out of that one sentence:
void GoConnect() { try { salesOrdersArray = MagServ.salesOrderList(sessID, filter); } catch { GoConnect(); } }