WCF使用https后报错的问题

报错:

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

<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<standardEndpoints>
<webHttpEndpoint>
<!--
Configure the WCF REST service base address via the global.asax.cs file and the default endpoint
via the attributes on the <standardEndpoint> element below
-->
<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" />
</webHttpEndpoint>
</standardEndpoints>

<bindings>
<webHttpBinding>
<binding>
<security mode="Transport">
</security>
</binding>
</webHttpBinding>
</bindings>


</system.serviceModel>

加上红色字体那段就ok了

原文地址:https://www.cnblogs.com/hinsxun/p/3272262.html