[Mono-bugs] [Bug 79204][Nor] New - WebClient asynchronous hang
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Aug 29 00:11:23 EDT 2006
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 bugzymono at bluebottle.com.
http://bugzilla.ximian.com/show_bug.cgi?id=79204
--- shadow/79204 2006-08-29 00:11:23.000000000 -0400
+++ shadow/79204.tmp.19383 2006-08-29 00:11:23.000000000 -0400
@@ -0,0 +1,50 @@
+Bug#: 79204
+Product: Mono: Class Libraries
+Version: unspecified
+OS:
+OS Details: Fedora Core 5
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: bugzymono at bluebottle.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: WebClient asynchronous hang
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+When using the webclients asynchronous calls for download they never
+download anything
+
+Steps to reproduce the problem:
+1. Run the testsuite
+
+class MainClass
+{
+ public static void Main(string[] args) {
+ WebClient w = new WebClient();
+ w.DownloadFileAsync(new Uri("http://www.google.com"), "google.html");
+ Thread.Sleep(60000);
+ }
+}
+
+Actual Results:
+Nothing gets downloaded
+
+Expected Results:
+A downloaded file
+
+How often does this happen?
+Always
+
+Additional Information:
+Tracing the program shows that the webclient checks for its busy state
+before starting the download and in the asynchronous calls its set to true
+before the download starts and thus will never start or end.
+The version of mono is 1.1.16.1-1 from fedora extras devel
More information about the mono-bugs
mailing list