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 of the above frameworks? What are the advantages of using these versus a hand-rolled MSMQ system with the WCF bindings and/or non-MSMQ solu...
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...