Comments on: MassTransit 3 Update: A Simple Publish/Subscribe Example https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/ **ARCHIVED** A Blog Loosely Related to System Architecture by David Prothero **ARCHIVED** Tue, 14 Jun 2016 07:18:00 +0000 hourly 1 https://wordpress.org/?v=5.8.6 By: miguel https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-97 Tue, 14 Jun 2016 07:18:00 +0000 http://looselycoupledlabs.com/?p=263#comment-97 Hi dprothero,
I need your help, I am studying from your real world example. I updated this version to mass transit 3.
loosely coupled example not run with separate solution.
I separated the console project and run both (solution1– console and solution2–web) but the console not found new messages.

can you guide to me.

thanks
Miguel

]]>
By: miguel https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-96 Tue, 14 Jun 2016 07:13:00 +0000 http://looselycoupledlabs.com/?p=263#comment-96 In reply to miguel.

updated to mass transit 3—> public static IBusControl CreateBus(Action registrationAction = null)

publisher —> Bus = BusInitializer.CreateBus((x, host) => { });
consumer—>BusInitializer.CreateBus((cfg, host) =>
{
cfg.ReceiveEndpoint(host, “StringQueUeName”,e =>
{
e.Consumer();
});

});

]]>
By: miguel https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-95 Fri, 10 Jun 2016 03:14:00 +0000 http://looselycoupledlabs.com/?p=263#comment-95 Hi, tanks for the post. I am looking for the ServiceBusConfigurator in masstransit 3. thanks very much.

your masstransit 2 version –> public static IServiceBus CreateBus(string queueName, Action moreInitialization)

]]>
By: dprothero https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-78 Thu, 24 Mar 2016 15:39:00 +0000 http://looselycoupledlabs.com/?p=263#comment-78 In reply to Ananth Eswar.

Please take a look at this post: http://stackoverflow.com/questions/30760108/masstransit-temporary-queue

I’ll add a question for Chris on that thread.

]]>
By: Ananth Eswar https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-77 Tue, 22 Mar 2016 10:42:00 +0000 http://looselycoupledlabs.com/?p=263#comment-77 How do I create a temporary queue with MassTrasit 3.0. I know how to do it with 2.0 but the same is not working for 3,0. Thanks for the help!

]]>
By: Jovan Racic https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-63 Thu, 10 Dec 2015 11:59:00 +0000 http://looselycoupledlabs.com/?p=263#comment-63 The received messages after subscriber restart are not in correct order? Probably it’s multi-threading issue because queue is FIFO. Could You give me some explanation about.Thank’s.

]]>
By: Nick Barrett https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-62 Wed, 11 Nov 2015 23:29:00 +0000 http://looselycoupledlabs.com/?p=263#comment-62 Hi David,
Great post. Thanks for taking the time to update your original post to v3. I used this post as my first attempt at MassTransit. It worked really well. I hope you are able to find time to update some of your other posts to v3 as well.

Thanks again =)

]]>
By: Michael Rose https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-59 Mon, 03 Aug 2015 19:46:00 +0000 http://looselycoupledlabs.com/?p=263#comment-59 Hi David,
Great article. I followed the previous one as well for the previous Mass Transit version. I’m struggling slightly with one part of this – when I stop the consumer my messages are automatically moved to a queuename_error queue whenever they are published. Is there any way to prevent “undelivered” messages being moved to the error queue and simply being queued in the main queue until the subscriber/consumer starts up again?

]]>
By: A Simple MassTransit Publish/Subscribe Example | Loosely Coupled Labs https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/#comment-56 Sat, 04 Jul 2015 23:09:50 +0000 http://looselycoupledlabs.com/?p=263#comment-56 […] There is a newer version of this post for those using MassTransit 3. The post below is for MassTransit […]

]]>