Why does the following code Timeout the second (and subsequent) time it is run?
The code hangs at:
using (Stream objStream = request.GetResponse().Ge
I had the same issue, and I resolved it ensuring I call the Abort() method on each of the request object created.
Abort()