【发布时间】:2014-11-06 16:43:26
【问题描述】:
我在 IIS 上托管了我的服务。
托管服务已申请 SSL 证书,在浏览 URL 时显示为 HTTPS。
但是,当我在客户端应用程序(ASP.NET WEB 应用程序)中使用此 URL 时,它允许添加 https//domain/service.svc,但在客户端配置中,URL 显示为 http 而不是 https。什么时候手动修改,报错如下:The provided URI scheme 'https' is invalid; expected 'http'.
以下是 WCF 服务配置(托管在 IIS 上):
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="customBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding name="basicBindingConfiguration" closeTimeout="00:05:00"
openTimeout="00:05:00" receiveTimeout="00:10:00" sendTimeout="00:05:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
</security>
</binding>
</basicHttpBinding>
</bindings>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" minFreeMemoryPercentageToActivateService="0" />
<services>
<service name="Administrator.OAP.CRMServices.CRMServices"
behaviorConfiguration="customBehavior">
<endpoint address=""
binding="basicHttpBinding"
bindingConfiguration="basicBindingConfiguration"
contract="Administrator.OAP.CRMServices.Contracts.ICRMServices" />
</service>
</services>
谁能指导我这里有什么问题或需要更改才能仅通过 HTTPS 使用此服务?
【问题讨论】:
标签: wcf https wcf-security basichttpbinding wcf-configuration