有没有人设法通过 SSL 使用 .NET Core 2.0 连接到 AmazonMQ?
使用 Apache.NMS.ActiveMQ.Core 包连接时出现以下错误:
System.NotSupportedException: The requested security protocol is not supported.
at System.Net.SecurityProtocol.ThrowOnNotAllowed(SslProtocols protocols, Boolean allowNone)
at System.Net.Security.SslStream.AuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation)
at Apache.NMS.ActiveMQ.Transport.Tcp.SslTransport.CreateSocketStream()
at Apache.NMS.ActiveMQ.Transport.Tcp.TcpTransport.Start()
at Apache.NMS.ActiveMQ.Transport.WireFormatNegotiator.Start()
at Apache.NMS.ActiveMQ.Connection.CheckConnected()
at Apache.NMS.ActiveMQ.Connection.CreateActiveMQSession(AcknowledgementMode ackMode)
at SendToMQ.Program.SendMessage() in C:\GITLab\POC\SendToMQ\SendToMQ\SendToMQ\Program.cs:line 40
at SendToMQ.Program.Main(String[] args) in C:\GITLab\POC\SendToMQ\SendToMQ\SendToMQ\Program.cs:line 15
使用以下代码:
string url = "ssl://url:61617";
string userName = "name";
string password = "pw";
string payLoad = "This is a test.";
IConnectionFactory factory = new ConnectionFactory(new Uri(url));
using (IConnection connection = factory.CreateConnection(userName, password))
{
using (ISession session = connection.CreateSession(AcknowledgementMode.AutoAcknowledge))
{
IDestination destination = Apache.NMS.Util.SessionUtil.GetDestination(session, "TestTopic");
using (IMessageProducer producer = session.CreateProducer(destination))
{
connection.Start();
ITextMessage request = session.CreateTextMessage(payLoad);
request.Properties["id"] = 123;
producer.Send(request);
}
}
}
提前致谢。