[Mono-bugs] [Bug 44691][Nor] Changed - System.Net.WebException: The request timed out
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Fri, 13 Jun 2003 22:29:38 -0400 (EDT)
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 tberman@gentoo.org.
http://bugzilla.ximian.com/show_bug.cgi?id=44691
--- shadow/44691 Fri Jun 13 06:34:22 2003
+++ shadow/44691.tmp.28726 Fri Jun 13 22:29:38 2003
@@ -89,6 +89,29 @@
Created an attachment (id=4597)
StockTicker.cs [compile to library and put in ./bin]
------- Additional Comments From gonzalo@ximian.com 2003-06-13 06:34 -------
Currently there's no support for web services in System.Web.
+
+------- Additional Comments From tberman@gentoo.org 2003-06-13 22:29 -------
+After looking through this some more, and adding in 'debuging'
+(Console.WriteLine) statements (thanks gonzalo :) ). It appears that
+this doesnt have anything to do with System.Web.Services that I can
+find and it has to do with System.Net.
+
+It is dying here:
+
+[System.Net.HttpWebRequest line #544]
+ if (!asyncResult.AsyncWaitHandle.WaitOne (timeout, false)) {
+ Abort ();
+ throw new WebException ("The request timed out",
+WebExceptionStatus.Timeout);
+ }
+
+And, if for testing purposes, you comment out that check right there,
+it dies here:
+
+[System.Net.HttpWebRequest line #525]
+ asyncWrite = result;
+ result.WaitUntilComplete ();
+