To control retries I want to resend a message within a saga. Since I already have a message i just want to wrap it so I can send it again. Like this: _bus.DelaySend( DateTime.Now.AddSeconds( 3 ), new RetryOf<SubmitPayment>(message) );
When I do this I get this error message: Could not find no message owner for Messages.RetryOf`1[Messages.SubmitPayment] I then added this to the app.config: <add name="Messages.RetryOf`1[Messages.SubmitPayment]" endpoint="msmq://localhost/Receiver" /> But I still get the same error message. Am I doing something wrong? Or is this not possible to do? -- You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group. To post to this group, send email to rhino-tools-dev@googlegroups.com. To unsubscribe from this group, send email to rhino-tools-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en.