[Mono-bugs] [Bug 45536][Maj] Changed - XmlDocument.Load fails
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Fri, 27 Jun 2003 14:55:44 -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 gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=45536
--- shadow/45536 Fri Jun 27 11:17:22 2003
+++ shadow/45536.tmp.10447 Fri Jun 27 14:55:44 2003
@@ -1,12 +1,12 @@
Bug#: 45536
Product: Mono/Class Libraries
Version: unspecified
OS: unknown
OS Details:
-Status: RESOLVED
+Status: NEEDINFO
Resolution: DUPLICATE
Severity: Unknown
Priority: Major
Component: CORLIB
AssignedTo: mono-bugs@ximian.com
ReportedBy: Mark_Kuschnir@yahoo.co.uk
@@ -48,6 +48,19 @@
Additional Information:
------- Additional Comments From bmaurer@users.sf.net 2003-06-27 11:17 -------
*** This bug has been marked as a duplicate of 45463 ***
+
+------- Additional Comments From gonzalo@ximian.com 2003-06-27 14:55 -------
+We need more info on this.
+
+May be you can print the response stream to confirm that you get
+something valid.
+
+Stream st = response.GetResponseStream ();
+byte [] buf = new byte [1024];
+int count;
+while ((count = st.Read (buf, 0, 1024)) != 0)
+ Console.Write (Encoding.UTF8.GetString (buf, 0, count));
+