私の WCF サービスでは、SSL 接続を介して JSON を使用してクライアントにデータを送信しようとしています。wsHttpBinding
のセキュリティ モードを使用して、OData データベース ソースをクライアントに保護することができましたTransport
。webHttpBinding
SSL を使用するために同じことができないのはなぜですか? JSON を使用して SSL 接続も使用する必要があるエンドポイントを構成するにはどうすればよいですか?
webHttpBinding
本質的にとの違いは何wsHttpBinding
ですか?
<bindings>
<wsHttpBinding>
<binding name="TransportSecurity">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="EndpBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="ServiceBehavior" name="DataService4.DataService">
<endpoint address="" binding="webHttpBinding" contract="DataService4.IService" bindingConfiguration="TransportSecurity" behaviorConfiguration="EndpBehavior" />
<endpoint contract="IMetadataExchange" binding="mexHttpsBinding" address="mex" />
</service>
</services>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />