Hello Ram
Thanks for the reply . Ports are correct after changing the authentication to basic and none it started working.
Now the question is am not able to connect with username and password as default and default .
Do I need to change any settings in access control- client authentication - settings ?
Currently I have enabled basic authentication and selected type to none.
I also need how to connect using amqps?
i am getting error Amqp.AmqpException: ‘sasl-mechanisms(sasl-server-mechanisms:)’
this is the code
Address address = new Address(“amqp://default:default@localhost:5670”);
Connection connection = new Connection(address);
Session session = new Session(connection);
Message message = new Message("Hello AMQP!");
SenderLink sender = new SenderLink(session, "sender-link", "q1");
sender.Send(message);
Console.WriteLine("Sent Hello AMQP!");
sender.Close();
session.Close();
connection.Close();
Thanks in advance