Hi,
I am having problems while trying to use MassTransit with a RabbitMQ server with SSL configured.
The SSL works while using RabbitMQ client to connect and is able to use the port 5671 without problems.
But when using Masstransit it always get the same error.
The code for Masstransit is:
Uri inputAddress = new Uri("rabbitmq://localhost:5671/test_queue");
_bus = ServiceBusFactory.New(c =>
{
c.ReceiveFrom(inputAddress);
c.UseRabbitMqRouting();
c.UseRabbitMq(r =>
{
r.ConfigureHost(inputAddress, h =>
{
h.UseSsl(s =>
{
s.SetServerName(System.Net.Dns.GetHostName());
s.SetCertificatePath("C:\\client\\keycert.p12");
s.SetCertificatePassphrase("password");
Rabbit MQ logs throws a ssl_upgrade_error
=INFO REPORT==== 5-Oct-2012::11:45:37 ===
accepting AMQP connection <0.15810.0> ([::1]:62343 -> [::1]:5671)
=ERROR REPORT==== 5-Oct-2012::11:45:37 ===
error on AMQP connection <0.15810.0>: {ssl_upgrade_error,"record overflow"}
I been trying everything for the last two days, anyone can help please?
Best regards and thanks a lot.
--
You received this message because you are subscribed to the Google Groups "masstransit-discuss" group.
To post to this group, send email to masstrans...@googlegroups.com.
To unsubscribe from this group, send email to masstransit-dis...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/masstransit-discuss/-/6MSxhQ9o9UMJ.
For more options, visit https://groups.google.com/groups/opt_out.