While attempting to connect to the broker I am getting the following error message
2013-06-16 01:15:25 [System] error Connection 127.0.0.1:5672-127.0.0.1:51592No
protocol received closing
My C++ code looks like this. The error occurs when I attempt to open a
connection
connection = boost::make_shared <Connection>("127.0.0.1");
connection->open(); //Error
Any suggestions why I am getting this error ?
