Very Slow WebResponse triggering TimeOut - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T05:50:43Z http://stackoverflow.com/feeds/question/1089350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1089350/very-slow-webresponse-triggering-timeout 0 Very Slow WebResponse triggering TimeOut David Fdez http://stackoverflow.com/users/133920 2009-07-06T21:45:13Z 2009-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 &amp; 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#1089359 3 Answer by Jon Skeet for Very Slow WebResponse triggering TimeOut Jon Skeet http://stackoverflow.com/users/22656 2009-07-06T21:47:44Z 2009-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>