Tagged Questions
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
5
votes
1answer
155 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> {
...
2
votes
0answers
53 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
198 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
2answers
125 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 ...
0
votes
0answers
94 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
233 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 ...