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 automatically by my program.
I'm fairly sure I'm just not doing something right but I don't know what I've omitted.
I did discover an 'Disa...
I have a saga that can handle multiple messages like so:
public class OrderSaga : ISaga<Order>
, InitiatedBy<StartOrderSaga>
, Orchestrates<CancelOrder>
, Orchestrates<PaymentForOrderReceived>
, Orchestrates<CheckOrderWasPaid>
, Orchestrates<OrderAbandoned>
, Orchestrates<CheckOrderHasBee...
I will like to add Rhino Service Bus to my ASP.NET web application but using Ninject as the DI Container. So far all examples I keep seeing use Castle Windsor which I don't want to use since we already use Ninject.
Are there any tutorials out there which show how to add Rhino Service Bus to an ASP.NET web application without a direct de...