0

我的任务是对现有的 WCF 服务进行一些更改(我以前没有任何使用 WCF 的经验)。该服务作为 Windows 服务运行。客户端应用程序通过 http 连接到它,调用 Datagram.Services 中公开的方法。我只需要更改它,以便客户端应用程序只能使用 https(而不是 http)连接。是否可以仅通过更改配置文件来做到这一点?如果是这样,任何需要在下面的配置文件中更改以完成它的建议。客户端是否还必须安装证书才能连接到此应用程序?

<system.serviceModel>  
    <services>  
      <service name="Datagram.Services" behaviorConfiguration="Datagram_Behavior">  
        <endpoint address="" binding="basicHttpBinding" bindingConfiguration="" name="Datagram.Service" contract="Datagram.IServices" />  
        <endpoint address="mex" binding="mexHttpBinding" name="MEX" contract="IMetadataExchange" />  
        <host>  
          <baseAddresses>  
            <add baseAddress="http://localhost:5000/Datagram" />  
          </baseAddresses>  
          <timeouts closeTimeout="00:01:00" openTimeout="00:05:00" />  
        </host>  
      </service>  
    </services>  
    <behaviors>  
      <serviceBehaviors>  
        <behavior name="Datagram_Behavior">  
          <serviceMetadata httpGetEnabled="true" />  
          <serviceDebug includeExceptionDetailInFaults="true" />  
        </behavior>  
      </serviceBehaviors>  
    </behaviors>  
  </system.serviceModel>  
4

1 回答 1

0

您是否启用了传输级安全性?

http://www.codeproject.com/Articles/36705/7-simple-steps-to-enable-HTTPS-on-WCF-WsHttp-bindi

于 2012-10-31T09:39:30.833 回答