I'm a newbie when it comes to queuing concepts - so please bear with me:
As I understand it, Rhino ServiceBus needs a backend 'server' - some code that handles the msmq-queue and subscriptions to it.
When I send a message to the queue, the backend should process this message and send a new type of message to all listeners to the queue.
For my setup, I'll have two types of message - a messageType and a replyType. A [number of] webserver[s] will use a IOnewayBus - send messages of type messageType to the backend, which in turn consumes this message and notifies other clients with a message of type replyType.
Is my understanding correct - or can I somehow publish from the webservers, so I don't need the backend?