我有一个非常“简单”的问题。我有一个WCF服务器,它应该只接受TLS 1.2连接。但每次我通过firefox或任何浏览器连接它都使用TLS 1.0。
.NET Framework-Version是4.6.1所以它应该支持TLS 1.2。 这是我的app.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="WCFServer.Properties.Settings.ConnectionString" connectionString="SomeConnectionString" />
</connectionStrings>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="TestNetTcpBinding">
<reliableSession enabled="true" />
<security>
<message clientCredentialType="Windows" algorithmSuite="Basic256Sha256Rsa15" />
</security>
</binding>
</netTcpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="MyCustomAttributeBehavior">
<Validator />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="DefaultBehavior">
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceMetadata httpsGetEnabled="true" httpsGetUrl="mex" policyVersion="Default" />
</behavior>
</serviceBehaviors>
</behaviors>
<extensions>
<behaviorExtensions>
<add name="Validator" type="WCFServer.RightAttribute.MyBehaviorSection, WCFServer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</behaviorExtensions>
</extensions>
<services>
<service behaviorConfiguration="DefaultBehavior" name="WCFServer.Services.Implementations.BusinessService">
<endpoint address="ProductService" behaviorConfiguration="MyCustomAttributeBehavior"
binding="netTcpBinding" bindingConfiguration="TestNetTcpBinding"
contract="WCFServer.Services.Interfaces.IProductService" />
<endpoint address="UserService" behaviorConfiguration="MyCustomAttributeBehavior"
binding="netTcpBinding" bindingConfiguration="TestNetTcpBinding"
contract="WCFServer.Services.Interfaces.IUserService" />
<host>
<baseAddresses>
<add baseAddress="net.tcp://SomeHost/WCFService/Service" />
<add baseAddress="https://SomeHost/WCFService/Service" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.4000" newVersion="4.1.0.4000" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
我希望我没有把XML格式化得太糟糕了。对不起。 我把它放在一个控制台应用程序中来测试。 这是我的主要方法(我尝试将SecurityProtocol设置为仅TLS 1.2)
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
var host = new ServiceHost(typeof(BusinessService));
host.Open();
Console.WriteLine("Services Ready");
Console.WriteLine("Press any button to close services.");
Console.Read();
host.Close();
Environment.Exit(0);
我的班级BusinessService
同时实施IUserService
和IProductService
。
您可以忽略MyCustomAttributeBehavior
。只是一些“拦截器”的东西,这应该不重要。
编辑:证书没问题。火狐也说。 证书是否必须满足任何特殊要求?我不这么认为,但我不确定。
我已尝试在SecurityProtocol
之前和之后设置host.Open()
。两者都没有用。
任何帮助都表示赞赏。
谢谢!
答案 0 :(得分:1)
ServicePointManager.SecurityProtocol
仅用于打开连接,而不用于接收的连接。如果您正在使用基于HTTP的绑定(例如BasicHttpsBinding),则使用的SSL / TLS版本将取决于HTTP.SYS配置(自托管或IIS),而后者又取决于全局SCHANNEL机器上的设置。
在这种情况下,您正在使用NetTcp,我记得最后一次不使用SSL / TLS。