[Mono-bugs] [Bug 42559][Cos] Changed - System.Uri.ToString() returns different results on Mono versus Rotor

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Wed, 7 May 2003 22:32:36 -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 bmaurer@users.sf.net.

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

--- shadow/42559	Wed May  7 21:41:07 2003
+++ shadow/42559.tmp.7079	Wed May  7 22:32:36 2003
@@ -1,14 +1,14 @@
 Bug#: 42559
 Product: Mono/Class Libraries
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Cosmetic
 Component: CORLIB
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: mathpup@mylinuxisp.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -53,6 +53,18 @@
 How often does this happen?  
  
 Always 
  
  
 Additional Information:
+
+------- Additional Comments From bmaurer@users.sf.net  2003-05-07 22:32 -------
+Ok, from the tests we did on 41998, it looks like MS and Rotor give
+different answers.
+
+I think this is because Rotor views tha path
+\\server\share\path\to\file.txt as
+//server/share/path/to/file.txt, which is the same thing as
+/server/share/path/to/file.txt. However, it seems the URI does not get
+rid of the extra '\' 's, but does change them to the standard '/' 's.
+
+I think that this is going to have to become platform dependant code.