I am invoking a webservice in a for loop. The service is synchronous and I have tried applying a thread sleep so as to wait before I make the next call in the loop :
[code]
for(...)
{
WS client call
Thread sleep
}
I still get a read time out , the first couple of iterations go thru fine though.