In Sitecore Commerce powered by Microsoft Dynamics 8.0 Update-1, the transaction service uses HTTPS protocol for some functionalities.
Follow the steps below to fully enable SSL communication if this is necessary.
<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>
to
<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" />to
<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>
to
<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="httpto
<endpoint address="https