[Mono-bugs] [Bug 58763][Cri] Changed - XmlDocument.Load fails

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 20 May 2004 15:09:59 -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 atsushi@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=58763

--- shadow/58763	2004-05-20 13:33:32.000000000 -0400
+++ shadow/58763.tmp.22136	2004-05-20 15:09:59.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 58763
 Product: Mono: Class Libraries
 Version: unspecified
 OS: unknown
 OS Details: 
-Status: NEW   
+Status: NEEDINFO   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Critical
 Component: Sys.XML
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: Christoph@ApiViewer.de               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -40,6 +40,25 @@
 
 How often does this happen? 
 always
 
 Additional Information:
 Mono 0.91
+
+------- Additional Comments From atsushi@ximian.com  2004-05-20 15:09 -------
+That code works fine from my winXP box. Can you try this example below
+and report us the result?
+
+using System;
+using System.Net;
+
+public class Test
+{
+        public static void Main ()
+        {
+                string uriString =
+"http://xoap.weather.com/search/search?where=Paderborn,%20Germany";
+                WebClient web = new WebClient ();
+                web.DownloadData (uriString);
+        }
+}
+