I am trying to set up a simple example to connect to and send a message to a queue. we removed authentication for qpid so as to not need a username and password. what happens is once it tries to send the message I get an AMQP exception with the message amqp:connection:forced
what does this exception mean? and any idea of what I might have missed?
string broker = "amqp://linuxlab.netigrate.net:5672";
string outQueue = "toVCC";
string inQueue = "fromVCC";
Connection.DisableServerCertValidation = true;
Connection connection = null;
try
{
Address address = new Address(broker);
connection = new Connection(address);
Session session = new Session(connection);
SenderLink sender = new SenderLink(session, "sendAndRecieve.send", outQueue);
Message message = new Message("Hello");
sender.Send(message);