I have a system where messages are being sent server from one application to server side in my web application
The messages are being sent by NService bus
Has anyone ever been able to find a way to get a message to the relevant server side instance and avoid it being swallowed by another?
Eg instance 1 is only interested in message 124 instance 2 is only interested in message 135
If instance one picks up message 135 I have a problem because it will never get to instance 2
This is a real time application and I have seen that people say a backplane is not the recommended approach
Paul