Tagged Questions
NServiceBus is a highly pluggable, reliable, open source Enterprise Service Bus built on .NET.
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 ...
14
votes
2answers
2k views
Enterprise Service Bus, .NET Service Bus, NServiceBus and the wheels on the bus
Enterprise Service Bus (ESB), .NET Service Bus, NServiceBus, RhinoServiceBus, MassTransit and so on.
I'm trying to understand what each of these technologies have in common or not in common.
I ...
12
votes
1answer
578 views
NServiceBus with Unity 2.0?
Anyone using NServiceBus 2.0 successfully with Unity 2.0?
I've tried to compile sources of NServiceBus.ObjectBuilder.Unity.dll against Unity 2.0 assemblies but got several compile-time errors ...
12
votes
3answers
636 views
What is a servicebus and when do I need one?
I have heard talk about the NServiceBus, but I haven't really understood what it is. They claim to be "The most popular open-source service bus for .net".
So; what is a "service bus", and when do I ...
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
9
votes
2answers
287 views
NserviceBus Gateway Sample
Has anyone managed to get the NServiceBus Gateway component to work?
The sample in v3.0 does not work out of the box like other samples.
A step by step guide or code sample will be helpful to get ...
9
votes
3answers
759 views
NServiceBus license?
So, I am reading the license restriction for NServiceBus Community Edition. It says:
Production use is limited to a single server with no more than 4 cores.
Does that mean that all the ...
8
votes
1answer
123 views
Using NServiceBus in an Amazon EC2 hosted application
We're starting a new project that has some messaging and queueing requirements that are pretty basic, but in the future there may be some additional requirements for things such as sagas to process ...
8
votes
9answers
3k views
What is an Empty interface used for
I am looking at nServiceBus and came over this interface
namespace NServiceBus
{
public interface IMessage
{
}
}
What is the use of an empty interface?
7
votes
1answer
2k views
NServiceBus and NHibernate - Message Handler and Transactions
From my understanding NServiceBus executes the Handle method of an IMessageHandler within a transaction, if an exception propagates out of this method, then NServiceBus will ensure the message is put ...
6
votes
1answer
308 views
NServiceBus: What happens to a published message if my subscriber machine is powered off?
With simple Pub/Sub in NServiceBus, I know that if my subscriber app is not running, then the published messages will just accumulate in the queue until they can be processed. But where do they ...
6
votes
2answers
824 views
Enterprise Service Bus real world usage or examples
I'm looking into the ESB thing with .net like NServiceBus etc , can someone highlight what kind of real world business problems can be solved (forget the technical edge) ? And is this used to ...
5
votes
6answers
361 views
Where to raise persistence-dependent domain events - service, repository, or UI?
My ASP.NET MVC3 / NHibernate application has a requirement to fire off and handle a variety of events related to my domain objects. For example, an Order object might have events like ...
5
votes
4answers
257 views
Where do you put an encryption key on a public facing server?
I am using NServiceBus with MSMQ between my web application and service and I need to be able to encrypt the message payload so that if a message gets queued locally on the web server (service host is ...
5
votes
1answer
886 views
NServiceBus Publish() vs. Send() in website context
I'm looking to gain a better understanding of why it is recommended to never Publish() messages from a website using NServiceBus (NServiceBus Documentation, scroll about two thirds of the way down).
...
5
votes
1answer
406 views
Showing changes in View when using CQRS & DDD with Domain Events & ServiceBus
I'm a little confused about the flow in a system using domain events to build the read model. Particularly, how do we deal with the fact that the user expects data (and its view) to change when they ...
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 ...
5
votes
2answers
2k views
How to configure MessageEndpointMapping by namespace in NServiceBus
I am trying to configure my message endpoint mapping in my NServiceBus configuration by sending messages from different namespaces to different endpoints.
As such, I have configured the following in ...
5
votes
1answer
2k views
How to configure nservicebus msmqtransport with code
Im just geting started with NServiceBus and can't figure out what im missing when configuring the MsmqTransport in code. If I configure the publisher like this;
IBus bus = Configure.With()
...
4
votes
1answer
94 views
NServicebus time-sensitive auction implementation
We are using NServicebus to design a system that has to solve an auction scenario: we want to send out a message to a set of companies that can bid on an item. After we've received all the bids we ...
4
votes
1answer
507 views
Business rule validators and command handler in CQRS
I am new to CQRS and I am tying to make sense of business rule validation within the write side (domain). I know that client side validation should be done in terms of valid date (required field, ...
4
votes
2answers
2k views
Swapping out MSMQ for RabbitMQ in NServiceBus
Udi mentions here that "people have swapped out the MSMQ layer of NServiceBus and plugged in RabbitMQ in its place".
I'm looking to do the same thing with the end goal of being able to run an app ...
4
votes
2answers
639 views
Testing Bus.Send in an application using NServiceBus
I have this code in my app .NET application using NServiceBus:
Bus.Send<IServiceStarted>(e =>
{
e.ServiceInfo = ...
4
votes
1answer
680 views
NServiceBus Xml Serialization issue with messages that have an IEnumerable<T> property
I'm trying to send a message with an IEnumerable property, am i correct that the NServiceBus Xml serializer cannot support this ?
If i switch to using an array rather than IEnumerable it will work, ...
4
votes
2answers
2k views
Win Service getting permission denied to Message Queuing
I have a WinService that can't start because NServiceBus throws "Service cannot be started. System.Messaging.MessageQueueException (0x80004005): Access to Message Queuing system is denied."
This is ...
4
votes
2answers
435 views
Cannot get self host to work on NServiceBus
Using version 2.0.0.1219
I am attempting to self host both a subscriber and publisher with NServiceBus and VS2010. The programs run and initialize but I cannot get the messages to move across. The ...
4
votes
3answers
909 views
NServiceBus: Aren't MSMQ Transactions BAD?
I am learning about NServiceBus and MSMQ. I was told that transactional queues in MSMQ are BAD and using them is really bad for performance. Does anyone know why? I am guessing this comes from the ...
4
votes
2answers
2k views
NServiceBus Publish/Subscribe Question
We are trying to find an elegant solution for reporting exceptions generated from systems across our infrastructure that's easier to operate on than viewing e-mail or checking log files. The ...
4
votes
1answer
545 views
How can I inject multiple repositories in a NServicebus message handler?
I use the following:
public interface IRepository<T>
{
void Add(T entity);
}
public class Repository<T>
{
private readonly ISession session;
public Repository(ISession session)
...
4
votes
5answers
1k views
Anyone using Ninject 2.0 as the nServiceBus ObjectBuilder?
I have been trying to get nServiceBus to work with Ninject 2.0 as the underlying IoC container unsuccessfully. While I can achieve basic integration, I've had issues with "ghost" messages getting ...
4
votes
2answers
524 views
NServiceBus Retry Delay
What is the optimal way to configure/code NServiceBus to delay retrying messages?
In its default configuration retry happens almost immediately up to the number of attempts defined in the ...
4
votes
2answers
475 views
“Reference required” error when referencing NServiceBus assembly from another project
We are trying to write an application that uses the NServiceBus library in a VB.NET environment. We've been stymied by errors similar to the following:
Reference required to assembly 'NServiceBus, ...
3
votes
3answers
111 views
is NServiceBus usefull in this WCF MVC scenario?
I just started investigating nservicebus, and can't figure out of it's appropriate or maybe overkill for my particular situation. Architectural pointers are greatly appreciated, i'm struggling a bit.
...
3
votes
3answers
152 views
NServiceBus MSMQ messages intermittently get stuck on the Outgoing Queue
We have a Pub / Sub system based on NServiceBus, where we have intermittent issues with messages getting stuck on the Publishers outgoing queue indefinitely, rather than being transmitted to the ...
3
votes
1answer
117 views
WCF Service Hosting in NServiceBus Host Issues
One of our teams here has just completed a project using both WCF and
NServiceBus. When I reviewed the project I found that they had chosen to host
the WCF services and NServiceBus in IIS instead of ...
3
votes
1answer
104 views
Overriding dependencies in NServiceBus
I'd like to use NServiceBus profiles to override the concrete classes used in the Spring.net dependency injection for use in Integration Testing.
In my EndpointConfig class, I have a component being ...
3
votes
3answers
84 views
What is causing the bottleneck in this scenario?
I'm looking for some help with a production issue we have encountered.
We have an NServiceBus Handler that when it processes a message sends a request to an asmx (.net 2.0) webservice running on IIS ...
3
votes
1answer
187 views
NServiceBus Message Handlers not firing in expected order Saga handler fires early
We are using our own host and want to specify a single handler to fire first. We have a message validation handler that we would like to fire before our Saga handler. We have tried to set the order ...
3
votes
1answer
232 views
NServiceBus subscribe to error queue
Is it possible to write an NServiceBus message handler that subscribes to error queue to allow us to perform decision making logic when an erroring message is moved there?
Preferably, I would like to ...
3
votes
2answers
395 views
Difference between Bus.Publish and Bus.Send in NServiceBus?
What are the essential differences between publishing a message using Bus.Publish and sending a message using Bus.Send? I am looking to understand how they differ and also when I should choose to use ...
3
votes
3answers
674 views
NServiceBus: specifying message order
I'm using NServiceBus in it's own process (so not using the Generic Host) and I would like to have multiple message handlers for a message in a specific order. For the Generic Host, you would ...
3
votes
4answers
462 views
MSMQ messages bound for clustered MSMQ instance get stuck in outgoing queues
We have clustered MSMQ for a set of NServiceBus services, and everything runs great until it doesn't. Outgoing queues on one server start filling up, and pretty soon the whole system is hung.
More ...
3
votes
1answer
186 views
NServiceBus: Can it work with NO XML configuration?
I don't want to use any XML configuration. Is it possible to have NServiceBus set up with NO XML configuration? I really want my publisher to be configured all in code, and I want to be able to ...
3
votes
2answers
454 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
2answers
89 views
NServiceBus 2.0.0.1219 not picking up messages
After upgrading from NServiceBus 2.0.0.1145 (.net 3.5) to version 2.0.0.1219 (.net 4.0), messages are no longer picked up from the queues when running on a windows 2008 server. Everything works as ...
3
votes
1answer
257 views
nServiceBus and security: what is best practise?
What do people do with security issues when using nServiceBus/msmq? Thinking about for example message encryption, message signing (validation?) etc
How do you know that the message is not sent to ...
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
551 views
IoC, Containers, and NServiceBus confusion
Castle Windsor is my container
NServiceBus is itself using it's own container internally, Spring by default
I'm implementing the PubSub config.
Ok, if I have my Bus.Publish happening within my ...
3
votes
1answer
458 views
NServiceBus - How to configure bus to allow WindowsIdentity to flow from client
On the client I have setup the bus with ImpersonateSender(true)
My server is configured AsA_Server, which by default should have ImpersonateSender(true)
I'm now trying to retrieve the ...
3
votes
1answer
320 views
how to send email when maxretries reached in nservicebus MSMQ
I have a .net service that processes messages. For any failures, i use log4net and write to a file. I added an SMTP appender for this. The issue is that I only want to send one email when something ...