[Mono-bugs] [Bug 45614][Wis] New - Uri different work MSNET vs Mono

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Sun, 29 Jun 2003 16:21:43 -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 pumpik@hotpop.com.

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

--- shadow/45614	Sun Jun 29 16:21:43 2003
+++ shadow/45614.tmp.10996	Sun Jun 29 16:21:43 2003
@@ -0,0 +1,40 @@
+Bug#: 45614
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: pumpik@hotpop.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Uri different work MSNET vs Mono
+
+Description of Problem:
+Different result on MS Framework1.1 & Mono 0.25 Uri class
+
+Steps to reproduce the problem:
+Uri a = new Uri("http://www.google.com/test.asp");
+string b = "test2.asp";
+Uri previousUri = a;
+a = new Uri(a, b, true);
+Console.WriteLine(a);
+
+Actual Results:
+Mono: http://www.google.com/test.asptest2.asp
+MSNET: http://www.google.com/test2.asp
+
+Expected Results:
+Mono: http://www.google.com/test2.asp
+MSNET: http://www.google.com/test2.asp
+
+How often does this happen? 
+Always.
+
+Additional Information: