gpt4 book ai didi

wcf - 根据验证程序,远程证书无效

转载 作者:行者123 更新时间:2023-12-02 23:54:50 25 4
gpt4 key购买 nike

我正在开发一个 WCF 服务 (NetTcpBinding),它在没有安全性的情况下工作得很好。我们从 DigiCert 购买了证书并将其安装在服务器上并使用 DigicertUtil.exe 进行配置。也安装在测试客户端计算机上。

打开安全性后,我可以毫无问题地从我的开发电脑连接到它。

服务器配置:

   binding.Security.Mode = SecurityMode.Transport;
binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Certificate;
binding.Security.Transport.ProtectionLevel = ProtectionLevel.EncryptAndSign;
ServerHost.Credentials.ServiceCertificate.SetCertificate(
StoreLocation.LocalMachine,
StoreName.My,
X509FindType.FindBySubjectName,
Properties.Settings.Default.CertificateName);

客户端配置:

 <binding name="EndPointTCP" closeTimeout="00:01:00" openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="1610612736"
maxReceivedMessageSize="1610612736">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="false" inactivityTimeout="00:10:00" enabled="false" />
<security mode="Transport">
<transport clientCredentialType="Certificate" protectionLevel="EncryptAndSign"/>
</security>
</binding>

<behaviors>
<endpointBehaviors>
<behavior name="behavior_ServerService">
<clientCredentials>
<clientCertificate findValue="*.domain.com"
storeLocation="LocalMachine"
storeName="My"
x509FindType="FindBySubjectName" />
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>

<client>
<endpoint address="net.tcp://clients.domain.com:10001/Server/ServerService"
binding="netTcpBinding" bindingConfiguration="EndPointTCP" contract="ServerServiceReference.IServerWS"
name="EndPointTCP" behaviorConfiguration="behavior_ServerService">
<identity>
<dns value="*.domain.com" />
</identity>
</endpoint>
</client>

(我修改了域名和服务名称以保护客户的隐私。)

在任何其他计算机上尝试时,我在客户端上收到以下错误:

The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:00:59.9840000'.

An existing connection was forcibly closed by the remote host

服务器上的跟踪日志显示:

The remote certificate is invalid according to the validation procedure.

这很奇怪,因为我在服务器和客户端上使用相同的证书......(更不用说它运行良好的开发电脑......)

即使我设置了,错误消息也是一样的

ServerHost.Credentials.ClientCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;

在服务器上

ServiceClient.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = X509CertificateValidationMode.None;

在客户端上。

谁能告诉我正确的做法吗?当然,我不想使用诸如验证回调始终返回 true 或上述非验证模式之类的解决方法。

如有任何帮助,我们将不胜感激。只有解决这个“小”问题才能发布...:(

提前非常感谢!

哈吉

最佳答案

听起来您正在尝试使用相同的证书作为服务器和客户端证书,并且您的客户端没有与颁发证书的主机名相同的主机名。即使您设置 X509CertificateValidationMode.None,主机名也必须匹配。如果您的开发机器与服务器相同,那么它肯定会成功。

您是故意尝试让客户端通过 SSL 向服务器进行身份验证,还是只是尝试通过证书颁发机构建立客户端的信任?

我还怀疑您的证书可能并不是真正的通配符证书,如果是这样的话,您就无法使用该证书进行客户端身份验证。

关于wcf - 根据验证程序,远程证书无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3453125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com