[Mono-bugs] [Bug 52630][Min] Changed - xsp-0.9 outputs a Warning when a file path contains a # in it

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 6 Jan 2004 17:49:45 -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 gonzalo@ximian.com.

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

--- shadow/52630	2004-01-06 06:52:57.000000000 -0500
+++ shadow/52630.tmp.29761	2004-01-06 17:49:45.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 52630
 Product: Mono/Class Libraries
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: NOTABUG
+Severity: Unknown
 Priority: Minor
 Component: System.Web
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: mwh@sysrq.dk               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -18,6 +18,26 @@
 
 ** (/usr/bin/xsp.exe:600): WARNING **: The local file URI
 'file:///home/cvs/sysrq/code/practice/c#/asp.net/Debugging/ErrorHandling/bin/xsp.exe'
 may not include a '#'
 
 Is this realy the case that a path may not contain a #?
+
+------- Additional Comments From gonzalo@ximian.com  2004-01-06 17:49 -------
+That warning comes from the runtime/glib.
+I tried this with current CVS:
+using System;
+using System.Reflection;
+
+class C
+{
+	static void Main ()
+	{
+		Uri u = new Uri
+("file:///home/cvs/sysrq/code/practice/c#/asp.net/Debugging/ErrorHandling/bin/xsp.exe");
+	}
+}
+
+and it works fine.
+
+If you have a test case that reproduces that behavior, feel free to
+reopen.