Remove invalid comments.
authoratsushieno <atsushi@ximian.com>
Wed, 28 Jul 2010 08:58:38 +0000 (17:58 +0900)
committeratsushieno <atsushi@ximian.com>
Wed, 28 Jul 2010 08:58:38 +0000 (17:58 +0900)
mcs/class/System.ServiceModel/System.ServiceModel.Description/ChangeLog
mcs/class/System.ServiceModel/System.ServiceModel.Description/ServiceDebugBehavior.cs
mcs/class/System.ServiceModel/System.ServiceModel.Description/ServiceMetadataExtension.cs

index b3990a756af4593a7dd2db0fe7877e831af1c155..95477498f0c352acc4e57acdc43a5ae2bcdb8373 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-28  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * ServiceDebugBehavior.cs, ServiceMetadataExtension.cs :
+         remove invalid comments.
+
 2010-07-28  Atsushi Enomoto  <atsushi@ximian.com>
 
        * ServiceDescription.cs : fill Name and Namespace. Remove extra code.
index a8fc923300ae94f5315a7b08aa3ef69148ce2572..7f022d959deedbb8644a54d3545928a98afa9f34 100644 (file)
@@ -76,14 +76,12 @@ namespace System.ServiceModel.Description
                        if (HttpHelpPageEnabled) {
                                Uri uri = serviceHostBase.CreateUri ("http", HttpHelpPageUrl);
                                if (uri != null)
-                                       // FIXME: wrong. It should add help page
                                        sme.EnsureChannelDispatcher (false, "http", uri, HttpHelpPageBinding);
                        }
 
                        if (HttpsHelpPageEnabled) {
                                Uri uri = serviceHostBase.CreateUri ("https", HttpsHelpPageUrl);
                                if (uri != null)
-                                       // FIXME: wrong. It should add help page
                                        sme.EnsureChannelDispatcher (false, "https", uri, HttpsHelpPageBinding);
                        }
                }
index 0dc07aff8dcfcd04dd13c221f865e97f0553ecb1..4018852d3f4cee0e9e4f71ee2c99c0918932fb90 100644 (file)
@@ -91,9 +91,6 @@ namespace System.ServiceModel.Description
                        return sme;
                }
 
-               // FIXME: distinguish HTTP and HTTPS in the Url properties.
-               // FIXME: reject such ServiceDescription that has no HTTP(S) binding.
-               // FIXME: it should not use the binding that is used in the ServiceEndpoint. For example, WSDL results have to be given as text, not binary.
                // FIXME: if the ServiceDescription has a base address (e.g. http://localhost:8080) and HttpGetUrl is empty, it returns UnknownDestination while it is expected to return the HTTP help page.
                internal void EnsureChannelDispatcher (bool isMex, string scheme, Uri uri, WCFBinding binding)
                {