Stomp.Net 示例:需要解释

问题描述 投票:0回答:1

我测试 STOMP 示例 Stomp.Net.Example.SendReceiveCore。在连接工厂中:

SslSettings =
{
  ServerName = serverName,
  ClientCertSubject = subject,
  KeyStoreName = "My",
  KeyStoreLocation = "LocalMachine"
}

ClientCertSubject
中应该包含什么?在证书属性中,我看到
Subject
CN = fpclientcert
(值
fpclientcert
)。提交该值会出现错误:

[警告] 找不到匹配的证书。主题为“fpclientcert”(SelectLocalCertificate Ln 161 [C:_git\Stomp.Net.Src\Stomp.Net\Transport\SslTransport.cs])

证书已创建并导入到服务器上的信任存储中。导出的客户端证书已导入到客户端计算机上的个人存储中。 我可以使用

SslStream
套接字与该证书建立连接。

c# stomp
1个回答
0
投票

网上几乎没有这方面的好例子,而且无法联系作者。

© www.soinside.com 2019 - 2024. All rights reserved.