Tagged Questions

MassTransit is an open source enterprise service bus (ESB) for .NET

learn more… | top users | synonyms

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 ...
11
votes
5answers
4k views

nServiceBus, Rhino Service Bus, MassTransit - Videos, Demos, Learning Resources

Hey people would love to hear about any resources you have or know about for nServiceBus, Rhino Service Bus and MassTransit. Videos? Blog posts? Books? Demo Projects etc
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 ...
5
votes
1answer
136 views

MassTransit message mis-typing

I am running into a base-typing problem with messages I am attempting to publish through MassTransit. Consider the following: [Serializable] public abstract class Event : CorrelatedBy<Guid> { ...
5
votes
4answers
1k views

Pros/Cons of using BizTalk instead of NServiceBus or MassTransit

I am curious if it even makes consider BizTalk for the implementation of a pub/sub messaging architecture (basically what you can do with NServiceBus or MassTransit is all I really need). My manager ...
3
votes
2answers
453 views

Failover scenarious for the Service Bus with NServiceBus or MassTransit

I need to build Identity server like Microsoft's http://login.live.com. To handle failover I will have multiple web servers nodes. The plan is that all database write operations are done by sending ...
3
votes
1answer
186 views

Good Service Tier Dev & Design: What are the common bad practises in communications tier development?

I am currently researching the best practises (at a reasonably high level) for application design for highly maintainable systems which result in minimal friction to change. By "Communications Tier" I ...
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
0answers
27 views

How to test a command- and event based system with Masstransit

I have a command handler that invokes an operation on a domain object which in turn fires an event when the operation has been executed. I'd like to test that an event handler receives the event when ...
2
votes
1answer
146 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 ...
2
votes
1answer
213 views

Service Bus - Am I being dumb?

I've been looking at Mass Transit for a couple of months now, and I'm really intrigued by the possibilities. However, I don't seem to be able to get the concepts quite right. I've looked the code, and ...
2
votes
1answer
439 views

MassTransit Queue Maintenance

Is there anything built into MassTransit that can help manage the queues? I'm specifically thinking of the error queues. I saw the thread similar to this, but I'm not looking to manage it with a ...
1
vote
2answers
46 views

PubSub example in MassTransit

After reading through the pub/sub project sample in MassTransit, it left me scratching my head. In the sample, the client application publishes a request for the subscriber application to update the ...
1
vote
1answer
66 views

Service Bus (Maybe?) for web farm

Part of this question is I'm not even sure what exactly I'll need to ask, so I'll start with the situation and work out from there. One project I'm working on involves use of COMET via the aspComet ...
1
vote
1answer
53 views

Configure Masstransit 2.0.0.5 with Ninject 2.0

Probably being dumb here.. but its getting late :) I am trying to use MassTransit with Ninject. I know there isnt as much love for Ninject with MT but I want to continue regardless.. and maybe help ...
1
vote
2answers
64 views

Windsor composite lifestyle for asp.net process

I have an asp.net process which also consumes messages from a servicebus (MassTransit). For webrequests my database session is resolved with a PerWebRequest lifestyle. But when the process consumes a ...
1
vote
1answer
296 views

Publisher/Subscriber architecture with MassTransit

are there anyone can help with a working example of a publisher/subscriber system using MassTransit ? I download the version 2.0beta and i have the need of one publisher and many subscriber. I try ...
1
vote
1answer
191 views

Unit of work when using MassTransit

I'm looking for a way to hook on the message handling pipeline and do some work after a consumer finishes handling some message. My intention is to open a new session and start a transaction(could ...
1
vote
1answer
483 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
2answers
104 views

nearby transits info by lat/lon

i have latitude and longitude of a location and i want to find nearby transit info of that location, just like how google does it on there google maps detail page.
1
vote
1answer
242 views

Any viable alternatives to WCF and WSDL for integration endpoints?

My employer is a software vendor for a specific market. Our customers integrate our system with others using web services. We use Microsoft technology, and our web services are implemented in ASP.NET ...
1
vote
1answer
811 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 ...
1
vote
6answers
1k views

What tools do you use to implement SOA/Messaging?

NServiceBus and MassTransit are two tools that can be used to implement messaging with MSMQ and other message queues. I find that once you start using messaging to have applications talk to each ...
0
votes
0answers
75 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
70 views

Subscribing to ServiceBus for Notifications

I've been doing some reading up this morning on developing client notification systems, and nodeJS seems to be part of my solution. This question gave me some ideas, but I think what I want is a ...
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 ...