Tagged Questions

43
votes
2answers
8k views

nServiceBus vs Mass Transit vs Rhino Service Bus vs other?

Just doing some quick spikes into possibly using a messaging system to process files that are in a nicely decoupled work flow system. What are the pro's and cons that people have found of using each ...
7
votes
3answers
2k views

What are the advantages of using WCF over frameworks like MassTransit or hand written MSMQ client?

I am looking at using MSMQ as a solution to do asynchronous execution in my upcoming project. I want to know the differences between using WCF and frameworks like MassTransit or even hand written MSMQ ...
4
votes
1answer
39 views

How to implement a compenting consumer solution?

As a exercise I'm trying to find an example which implements competing consumer. many producers - > MSMQueue <- competing consumers So far I did not find any documentation on how to achieve ...
3
votes
2answers
421 views

client requirements for messaging system (a la MassTransit) using MSMQ?

Having not used MSMQ before, I'm not at all clear an the client environment requirements to use it. I'm designing a client/server solution that will integrate with a legacy system and I'm sold on ...
2
votes
1answer
149 views

MassTransit - Update Messages to Client

I don't have very much experience using MSMQ and someone recommended I look at MassTransit to help implement a solution but I am having a hard time trying to figure out if using MassTransit + MSMQ is ...
1
vote
1answer
484 views

Do MassTransit or nServiceBus support MSMQ over HTTP transport?

I understand it's available since MSMQ 3.0, is it available via any of the .NET ESBs? Is this possible with other MQ transports (ActiveMQ, etc)? Thanks, E.
1
vote
1answer
812 views

Multiple consumers for a single queue in MassTransit

Is it possible to have several consumers listening on a single MSMQ instance and use the Selective Consumer interface for having each one deal with a distinct subset of the messages? I can't seem to ...
0
votes
0answers
76 views

When running MassTransit for first time in debugging, Error creating queue, insufficient privileges

I've got an MVC site and a processing service both set up to use MassTransit. I had to delete the queues, as I was getting an issue where the mt_ queues weren't being created for me when I started on ...
0
votes
1answer
226 views

Sending Castle Proxy from NHibernate with MassTransit over MSMQ causes StackOverflowException

I'm trying to send a message with MassTransit over MSMQ. The message contains two properties which are types obtained from an NHibernate query and contain Castle Proxies (for lazy loading). If I ...