Этот вопрос обсуждается здесь несколько раз, но даже после прочтения документации Microsoft https://docs.microsoft.com/en-us/dotnet/framework/wcf/configuring-services-using-configuration-files и Как можно объединить конфигурацию служб WCF для http и https в одном файле web.config?
Я до сих пор не совсем понимаю, как работает служба WCF со всеми ее атрибутами, и не могу заставить мой сервис поддерживать оба протокола.
Я могу заставить службу поддерживать HTTP или HTTPS без проблем , проблема здесь в том, чтобы служба сама выбирала правильный протокол .
Ключевым моментом является протокол привязки на первой конечной точке, любые другие изменения, подобные показанным ниже, не оказали влияния.
App.config-
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
Привязки -
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="AccountServicePortSoap11"/>
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
<message algorithmSuite="Default" />
</security>
</binding>
<binding name="AccountServicePortSoap22" />
<security mode="Transport">
<transport clientCredentialType="Window" proxyCredentialType="None" realm=""/>
<message algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
Конечные точки -
<client>
<endpoint address="" bindingConfiguration="AccountServicePortSoap11" binding="basicHttpBinding" contract="AccountServiceRef.AccountServicePort" name="AccountServicePortSoap11" />
<endpoint address="" bindingConfiguration="AccountServicePortSoap22" binding="basicHttpBinding" contract="AccountServiceRef.AccountServicePort" name="AccountServicePortSoap22" />
</client>
Остальная часть App.config
<appSettings>
<add key="defaultServer" value="http://**.**.**.**:80 " />
</appSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="DocumentFormat.OpenXml" publicKeyToken="******" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.8.1.0" newVersion="2.8.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Изменения, которые я пробовал -
<serviceBehaviors>
<behavior name="MyServiceBehavior">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"/>
<protocolMapping>
<add scheme="http" binding="basicHttpBinding" bindingConfiguration="AccountServicePortSoap22"/>
<add scheme="https" binding="basicHttpBinding" bindingConfiguration="AccountServicePortSoap11"/>
</protocolMapping>
<services>
<service behaviorConfiguration="MyServiceBehavior" name="com.advantage.online.store.accountservice" >
<endpoint address="" binding="basicHttpBinding" contract="AccountServiceRef.AccountServicePort" name="AccountServicePortSoap11" />
<endpoint address="" binding="basicHttpBinding" contract="AccountServiceRef.AccountServicePort" name="AccountServicePortSoap22" />
</service>
</services>