[Mono-bugs] [Bug 55926][Nor] Changed - Error Loading XmlFiles with "#" character in Path
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 22 Mar 2004 22:50:43 -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 atsushi@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=55926
--- shadow/55926 2004-03-22 17:53:44.000000000 -0500
+++ shadow/55926.tmp.8895 2004-03-22 22:50:43.000000000 -0500
@@ -1,15 +1,15 @@
Bug#: 55926
Product: Mono: Class Libraries
Version: unspecified
OS: unknown
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
-Priority: Blocker
+Priority: Normal
Component: Sys.XML
AssignedTo: mono-bugs@ximian.com
ReportedBy: tropico@tiscali.be
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
@@ -25,6 +25,37 @@
------- Additional Comments From tropico@tiscali.be 2004-03-22 17:53 -------
Sorry, forgot to mention, it's
XmlDocument.Load(fileName)
;)
+
+------- Additional Comments From atsushi@ximian.com 2004-03-22 22:50 -------
+I tried this example code and got no error. So it looks already fixed
+(if there was actually such problem).
+
+using System;
+using System.IO;
+using System.Xml;
+
+public class Test
+{
+ public static void Main ()
+ {
+ try {
+ XmlDocument doc = new XmlDocument ();
+ doc.Load ("c#/testc#book1.xml");
+ } catch (Exception ex) {
+ Console.WriteLine (ex);
+ }
+ }
+}
+
+If you still have trouble
+ - reproducable code
+ - exception stack trace
+are appliciated (or I could not find what has happen).
+
+Also read it before changing "Proprity" field:
+http://bugzilla.ximian.com/bug_status.html#priority
+
+Thanks.