[Mono-bugs] [Bug 70762][Nor] Changed - class HttpWebRequest ignores Timeout property
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 8 Jan 2005 19:42:45 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=70762
--- shadow/70762 2004-12-30 14:00:15.000000000 -0500
+++ shadow/70762.tmp.504 2005-01-08 19:42:45.000000000 -0500
@@ -21,6 +21,11 @@
This code takes a lot under mono. Under MS .NET it waits for 4 sec.
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Timeout = 4000;
response = request.GetResponse();
stream = response.GetResponseStream();
+
+------- Additional Comments From gonzalo@ximian.com 2005-01-08 19:42 -------
+I need some more input on this: does this happen when connecting to
+the url takes more than 4 seconds or when getting the data takes more
+than 4 seconds?