[Mono-bugs] [Bug 51510][Wis] Changed - Uri class does not parse the host name properly for UNC path.
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 30 Nov 2003 08:25:01 -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 rkumar@novell.com.
http://bugzilla.ximian.com/show_bug.cgi?id=51510
--- shadow/51510 2003-11-30 08:14:14.000000000 -0500
+++ shadow/51510.tmp.3628 2003-11-30 08:25:01.000000000 -0500
@@ -1,17 +1,17 @@
Bug#: 51510
Product: Mono/Class Libraries
Version: unspecified
-OS:
+OS: unknown
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Wishlist
Component: System
-AssignedTo: mono-bugs@ximian.com
+AssignedTo: rkumar@novell.com
ReportedBy: rkumar@novell.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
Summary: Uri class does not parse the host name properly for UNC path.
@@ -60,6 +60,30 @@
How often does this happen?
Always
Additional Information:
Expected results are the results that I get on .NET.
+
+------- Additional Comments From rkumar@novell.com 2003-11-30 08:24 -------
+Actual Results:
+IsUNC: True
+Scheme: file
+Port: -1
+Host:
+IsFile: True
+LocalPath: //server/path/file
+AbsPath: server/path/file
+Loopback: False
+
+Expected Results:
+IsUNC: True
+Scheme: file
+Port: -1
+Host: server
+IsFile: True
+Local Path: \\server\path\file
+Absolute Path: /path/file
+Loopback: False
+
+Sorry, for submitting incomplete bug report earlier. Also, this bug
+causes IsLoopback to return wrong result.