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 [EMAIL PROTECTED]

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

--- shadow/80091        2006-11-29 22:55:05.000000000 -0500
+++ shadow/80091.tmp.18041      2006-11-29 22:55:05.000000000 -0500
@@ -0,0 +1,36 @@
+Bug#: 80091
+Product: Mono: Class Libraries
+Version: 1.2
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: System
+AssignedTo: [EMAIL PROTECTED]                            
+ReportedBy: [EMAIL PROTECTED]               
+QAContact: [EMAIL PROTECTED]
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: HttpListener has too strict URL identification
+
+With the example below, HttpListener does not allow access to 
+http://localhost:8080/a while http://localhost:8080/a/ is accessible
+(note that latter has trailing '/').
+
+--------
+using System;
+using System.Net;
+
+public class Test
+{
+        public static void Main ()
+        {
+                HttpListener l1 = new HttpListener ();
+                l1.Prefixes.Add ("http://localhost:8080/a/";);
+                l1.Start ();
+                l1.GetContext ().Response.Close ();
+        }
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to