Tagged Questions

The tag has no wiki summary.

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 ...
1
vote
1answer
90 views

Rhino Service Bus with “Store and Forward”

Is it possible to use Rhino Service Bus with Rhino Queues in a 'store and forward' configuration? For example, lets say I have two nodes, A and B. If node B is down, I don't want any of the messages ...
1
vote
3answers
185 views

MSMQ: do 2 servers need to be in same domain to be able to access private queues?

As the title says - i have 3 servers: server-1 [wcf services] server-2 [wcf services] server-3 [esb using rhino.esb] So - server 1 publishes message to server-3 esb server 2 subscribes to messages ...
1
vote
2answers
685 views

Why isn't Rhino.ServiceBus automatically creating all my queues?

I've setup things in a pretty similar way to the blog posts about it but I'm getting an error when at start up about one of the queues. The msmq://localhost/colin_console_queue doesn't get created ...
0
votes
1answer
161 views

Rhino.Esb “Could not find no message owner for ”

I have some services which i want to be able to publish and subscribe to messages from. I have a backend bus console app which has the following configuration: <configSections> <section ...
0
votes
0answers
313 views

Rhino ServiceBus: Sagas with multiple messages

I have a saga that can handle multiple messages like so: public class OrderSaga : ISaga<Order> , InitiatedBy<StartOrderSaga> , Orchestrates<CancelOrder> , ...