Microsoft Dynamics 8.0 Update-1の機能を使用しているSitecore Commerceでは、トランザクション サービスの一部の機能でHTTPSプロトコルが使用されています。
必要に応じて、以下の手順に従ってSSL通信を完全に有効にしてください。
<binding name="wsSoapBinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" maxBufferPoolSize="10485760" maxReceivedMessageSize="1048576" messageEncoding="Text" textEncoding="utf-16" useDefaultWebProxy="true"> <readerQuotas maxStringContentLength="1048576" maxBytesPerRead="1048576" /> <security mode="None"> <message clientCredentialType="Windows" negotiateServiceCredential="false" algorithmSuite="Default" establishSecurityContext="false" /> </security> </binding>下記のコードに変更します。
<binding name="wsSoapBinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" maxBufferPoolSize="10485760" maxReceivedMessageSize="1048576" messageEncoding="Text" textEncoding="utf-16" useDefaultWebProxy="true"> <readerQuotas maxStringContentLength="1048576" maxBytesPerRead="1048576" /> <security mode="Transport"> <transport clientCredentialType="None"/> </security> </binding>
<endpoint binding="mexHttpBinding" address="mex" contract="IMetadataExchange" />下記のコードに変更します。
<endpoint binding="mexHttpsBinding" address="mex" contract="IMetadataExchange" />
<wsHttpBinding> <binding name="wsBinding" maxReceivedMessageSize="2147483647"> <security mode="None"> <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /> <message clientCredentialType="Windows" negotiateServiceCredential="false" algorithmSuite="Default" establishSecurityContext="false" /> </security> </binding> </wsHttpBinding>下記のコードに変更します:
<wsHttpBinding> <binding name="wsBinding" maxReceivedMessageSize="2147483647"> <security mode="Transport"> <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /> <message clientCredentialType="Windows" negotiateServiceCredential="false" algorithmSuite="Default" establishSecurityContext="false" /> </security> </binding> </wsHttpBinding>
<endpoint address="http下記のコードに変更します:
<endpoint address="https