I have an old asp.net application, we send out httpWebRequest to remote REST server and retrieve xml back, most of the time the application works fine. recently, we got some high CPU usage issue several times a day.
During the high CPU usage time, we monitored those httpWebRequest connections (by checking netstat for w3wp process), at the very beginning, the connections change to "CLOSE_WAIT" status from "ESTABLISHED", then after those connections timeout, those connections disappeared one by one, then there is no connection any more. After reset the IIS, when the w3wp.exe process start again, we still could not find any connections to httpWebRequest target server. so the CPU usage keep staying at high level. even after several round of reset, it won't solve the issue, until we saw some connections start to connect to httpWebRequest target server, CPU went down.
I actually thought it could be the issue of my code did not handle the httpWebRequest properly, I posted another question here: Question
As mentioned in that question, I also found lots timeout exception for System.Net.HttpWebRequest.GetResponse(). We found 3500 same exception with in 5 minutes when CPU usage is really high.
Does anyone have experience on this type of issue? Why the application won't send out request any more (since there is no connection in netstat). Thanks.
Here is the source code just in case you need reference.
System.Net.HttpWebResponse httpWebResponse = null;
System.IO.Stream stream = null;
XmlTextReader xmlTextReader = null;
try
{
System.Net.HttpWebRequest httpWebRequest = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(request);
httpWebRequest.ReadWriteTimeout = 10000;
httpWebRequest.Timeout = 10000;
httpWebRequest.KeepAlive = false;
httpWebRequest.Method = "GET";
httpWebResponse = (System.Net.HttpWebResponse)httpWebRequest.GetResponse();
stream = httpWebResponse.GetResponseStream();
xmlTextReader = new XmlTextReader(stream);
xmlTextReader.Read();
xmlDocument.Load(xmlTextReader);
//Document processing code.
//...
}
catch
{
//Catch blcok with error handle
}
finally
{
if (xmlTextReader != null)
xmlTextReader.Close();
if (httpWebResponse != null)
httpWebResponse.Close();
if (stream != null)
stream.Close();
}
