WCF--找不到具有绑定 BasicHttpBinding 的终结点的与方案 https 匹配的基址。注册的基址方案是 [http]。

Posted 幸福安康

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WCF--找不到具有绑定 BasicHttpBinding 的终结点的与方案 https 匹配的基址。注册的基址方案是 [http]。相关的知识,希望对你有一定的参考价值。

  <system.serviceModel>
    <services>
      <service name="xxxxx.xxxxxx">
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="aHttpBinding" contract="xxxxx.xxxxxx" name="xxxxx.xxxxx"></endpoint>
      </service>
    </services>
    <bindings>
      <basicHttpBinding>

        <binding name="aHttpBinding" maxReceivedMessageSize="1000000">
          <readerQuotas maxStringContentLength="1000000" />
          <security mode="Transport"> <!---------------------------------------------此处改为None----------------------->
          <transport clientCredentialType="None"/> 
        </security> 
        </binding>

      </basicHttpBinding>
    </bindings>

    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- 为避免泄漏元数据信息,请在部署前将以下值设置为 false -->
          <serviceMetadata httpsGetEnabled="false" />
          <!-- 要接收故障异常详细信息以进行调试,请将以下值设置为 true。在部署前设置为 false 以避免泄漏异常信息 -->
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

原因不知道为什么,把mode改为None就可以

以上是关于WCF--找不到具有绑定 BasicHttpBinding 的终结点的与方案 https 匹配的基址。注册的基址方案是 [http]。的主要内容,如果未能解决你的问题,请参考以下文章

找不到与端点方案 http 匹配的基地址,该端点具有绑定 WSHttpBinding 且没有解决方案

WCF 异常:找不到与端点的方案 http 匹配的基地址

在 Azure 托管的 WCF 中找不到终结点

在 WCF 的添加服务引用中找不到 net.tcp 端点?

为啥找不到我的自定义 WCF 行为扩展元素类型?

如何将自定义 WCF 协议通道添加到现有绑定