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
If you can't change the timeout, the below should work. salesOrdersArray should be initialized to null.
null
while(salesOrdersArray == null) { try { salesOrdersArray = MagServ.salesOrderList(sessID, filter); } catch { // Log failure } }