Mass Transit : No consumer
Have a newbie question about Mass Transit ESB I am trying MassTransit for the first time and trying to get my head around how the queues are created and how messages are consumed. I have a web application and a Console application trying to do publish / consume respectively This is my initialization code. var bus = Bus.Factory.CreateUsingRabbitMq(sbc => { var host = sbc.Host(new Uri(hostName), h => { h.Username(userName); h.Password(password); }); }); Then from the web app i call the following code. using (Bus.Start()) { var pubr = Bus.Publish<T>(message); pubr.Wait(); } This leads to the