我想在我的WCF服务中启用SSL / HTTPS。 所以我找到了一个Microsoft网站: http://msdn.microsoft.com/en-us/library/hh556232.aspx
但它不起作用。 有什么遗失的吗?
这就是我所拥有的:
<system.serviceModel>
<services>
<service name="Service.Service">
<endpoint address="" binding="webHttpBinding" contract="Service.IService" bindingConfiguration="webHttpsBinding" behaviorConfiguration="restBehavior"></endpoint>
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="restBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<bindings>
<webHttpBinding>
<binding name="webHttpsBinding" closeTimeout="00:00:20">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
我想从 jquery 调用该服务。使用 ajax 和 getjson 。