client.ConnectionInfo.Timeout = TimeSpan.FromSeconds(120);
client.OperationTimeout = TimeSpan.FromSeconds(60);
trying to make my program work reliably, so that, if it fails on the first connection attempt, it attempts again with more relaxed timeout settings, will the above work?thanks