Spring-Amqp-NET libraries for RabbitMQ - SSL support

199 Views Asked by At

We want to use spring-amqp-net in our applications to listen for messages in RabbitMQ. https://github.com/spring-projects/spring-net-amqp

We couldn't figure out any configuration parameter for SSL connection neither in the source code nor in the documentation.

Does anybody now if spring-amqp-net supports SSL connection to RabbitMQ?

If yes, how can we configure the SSL connection in our .net application's Application.xml file?

Thank you.

1

There are 1 best solutions below

2
On BEST ANSWER

I am not familiar with .NET, or that project (I am the lead for the Java Spring AMQP project).

With the Java Spring AMQP library, SSL is configured by appropriately configuring the underlying RabbitConnectionFactory and then that instance is injected into the Spring CachingConnectionFacrtory.

Looking at the code, it appears a similar mechanism is available in the .NET library...

    public CachingConnectionFactory(ConnectionFactory rabbitConnectionFactory)
            : base(rabbitConnectionFactory) { }

whereby you can configure the underlying ConnectionFactory with SSL and provide it to the CachingConnectionFactory.