When writing the below my code locks up on GetResponse. Why?
try
{
WebRequest myWebRequest = WebRequest.Create(strURL);
WebResponse myWebResponse = myWebRequest.GetResponse();
//more code here
|
When writing the below my code locks up on GetResponse. Why?
| |||||
feedback
|
|
This usually happens if you've made several requests to the same host, and not disposed of the The default connection management settings only allow 2 (or maybe 4, I can't remember) open connections to the same host at a time. If you really need to change this, use the
| |||||||
feedback
|