Filter requests only by paths, excluding host and port.
authorAtsushi Eno <atsushi@ximian.com>
Fri, 24 Sep 2010 07:57:38 +0000 (16:57 +0900)
committerAtsushi Eno <atsushi@ximian.com>
Fri, 24 Sep 2010 07:57:38 +0000 (16:57 +0900)
mcs/class/System.ServiceModel/System.ServiceModel.Channels.Http/HttpChannelListenerEntry.cs

index 4f9deb6a10018812ed505347abb2fee144508698..2cf8ba3870167e4c011075e0f2eb5bb4c54aeba1 100644 (file)
@@ -69,7 +69,7 @@ namespace System.ServiceModel.Channels.Http
                        return p2 - p1;
                }
 
-               const UriComponents cmpflag = UriComponents.HttpRequestUrl ^ UriComponents.Query;
+               const UriComponents cmpflag = UriComponents.Path;
                const UriFormat fmtflag = UriFormat.SafeUnescaped;
 
                internal bool FilterHttpContext (HttpContextInfo ctx)