I am trying to implement request/reply in rhino esb for MonoRail.
I looked at the MassTransit impl and I know they have an
IServiceBusRequest object for doing that.
I don't fully understand AddInstanceSubscription, even after going
thru the esb code and request/reply tests. WHen I do this:
var handler = new REsponseMessageHandler(this);
using (bus.AddInstanceSubscription(this.handler))
{
bus.Send(new RequestMessage(someText));
}
Should the bus.Reply() call inside my REquestMessageHandler consume
the passed in instance of 'handler'? It keeps resolving through the
container so any state I have is lost.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rhino-tools-dev?hl=en
-~----------~----~----~----~------~----~------~--~---