如何在WCF服务中启用SSL / HTTPS?

时间:2014-09-02 08:54:45

标签: wcf ssl

我想在我的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

0 个答案:

没有答案