Very Slow WebResponse triggering TimeOut - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T05:50:43Zhttp://stackoverflow.com/feeds/question/1089350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1089350/very-slow-webresponse-triggering-timeout0Very Slow WebResponse triggering TimeOutDavid Fdezhttp://stackoverflow.com/users/1339202009-07-06T21:45:13Z2009-07-06T21:47:44Z
<p>Hello:</p>
<p>I have a function in C# that fetches the status of Internet by retrieving a 64b XML from the router page</p>
<pre><code>public bool isOn()
{
HttpWebRequest hwebRequest = (HttpWebRequest)WebRequest.Create("http://" + this.routerIp + "/top_conn.xml");
hwebRequest.Timeout = 500;
HttpWebResponse hWebResponse = (HttpWebResponse)hwebRequest.GetResponse();
XmlTextReader oXmlReader = new XmlTextReader(hWebResponse.GetResponseStream());
string value;
while (oXmlReader.Read())
{
value = oXmlReader.Value;
if (value.Trim() != ""){
return !value.Substring(value.IndexOf("=") + 1, 1).Equals("0");
}
}
return false;
}
</code></pre>
<p>using Mozilla Firefox 3.5 & FireBug addon i guessed it normally takes 30ms to retrieve the page however at the very huge 500ms limit it stills reach it often. How can I dramatically improve the performance?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1089350/very-slow-webresponse-triggering-timeout/1089359#10893593Answer by Jon Skeet for Very Slow WebResponse triggering TimeOutJon Skeethttp://stackoverflow.com/users/226562009-07-06T21:47:44Z2009-07-06T21:47:44Z<p>You're not closing the web response. If you've issued requests to the same server and not closed <em>those</em> responses, that's the problem.</p>
<p>Stick the response in a <code>using</code> statement:</p>
<pre><code>public bool IsOn()
{
HttpWebRequest request = (HttpWebRequest) WebRequest.Create
("http://" + this.routerIp + "/top_conn.xml");
request.Timeout = 500;
using (HttpWebResponse response = (HttpWebResponse) request.GetResponse())
using (XmlReader reader = XmlReader.Create(response.GetResponseStream()))
{
while (reader.Read())
{
string value = reader.Value;
if (value.Trim() != "")
{
return value.Substring(value.IndexOf("=") + 1, 1) != "0";
}
}
}
return false;
}
</code></pre>
<p>(I've made a few other alterations at the same time...)</p>