WCF SSL连接配置
本文关键字:配置 连接 SSL WCF | 更新日期: 2023-09-27 18:03:50
我编写了wcf服务服务器和客户端应用程序,客户端和服务器都可以很好地使用基本的http绑定。现在我想更改配置,以使用SSL进行连接。有没有人可以解释我怎么做,并给出一个例子呢?
Thanks to lot
这里有一篇关于这个的很好的文章,还有一篇关于Stack的很好的文章。
密钥将在您的Config
文件中。
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicSecure">
<security mode="Transport" />
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="WcfServiceLibrary.Echo.EchoService">
<endpoint
address="https://localhost:8888/EchoService/"
binding="basicHttpBinding"
bindingConfiguration="BasicSecure"
contract="WcfServiceLibrary.Echo.IEchoService">
<identity>
<certificateReference
storeName="My"
storeLocation="LocalMachine"
x509FindType="FindByThumbprint"
findValue="f1b47a5781837112b4848e61de340e4270b8ca06" />
</identity>
</endpoint>
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
这里要注意的是security mode = "Transport"
和CertificateReference
。这些将是非常非常重要的。您必须确保您的端口配置正确,才能正常工作。
还请记住,wshttpBinding
在默认情况下启用了这种加密。
好运。
http://www.codeproject.com/Articles/36705/7-simple-steps-to-enable-HTTPS-on-WCF-WsHttp-bindi这是关于在WCF服务上使用SSL的一个非常简单和基本的参考。我之前和你在同一条船上,我关于SO的第一个问题是关于HTTP/HTTPS绑定。我和一个用户在SO上进行了很好的讨论,他们给了我一个很好的想法看看这个。我有web配置,这是主要的配置HTTP和HTTPS绑定