AWS ActiveMQ: how to connect from c#?

0

I have created AWS ActiveMQ broker: single.

Inbound rule for port 8162 is added, run console - it works. Ok, now I need to connect to the broker from my c# application. I do :

Uri connecturi2 = new Uri("activemq:tcp://" + hostName); var connectionFactory = new ConnectionFactory(connecturi2); var connection = connectionFactory.CreateConnection("mq_dev", "mq_dev!"); connection.Start();

and receive: Apache.NMS.ActiveMQ.IOException: 'Channel was inactive for too long: tcp://*2-1.mq.eu-west-1.amazonaws.com:5671

What is wrong? What should I fix?

Oleg
asked 8 months ago59 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions