I have RabbitMQ running on my Windows 7 machine. &nbsp;I ran it via the command prompt . &nbsp;I am able to verify that it is up. &nbsp;When I try to connect to it locally,<div><div>&nbsp; &nbsp;ConnectionFactory cf = new ConnectionFactory();</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cf.Uri = "amqp://localhost"</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; using (IConnection conn = cf.CreateConnection())</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</div></div><div>the CreateConnection call throws an exception saying</div><div>"None of the specified endpoints were reachable"&nbsp;<br></div><div>I was able to verify that RabbitMQ was running by executing rabbitmq-server.</div><div>Is there something I'm missing, I'm new to RabbitMQ?</div>