We are planning to use the WCF Routing Service.
Imagine we have two queues (q1, q2), Routing service picks up the message from q1, forwards it to a request-reply service, once the response is receive by routing service, it forwards it again to q2.
We are stuck now on how we will forward the response to another queue, is this a possible Use Case in WCF RoutingService?
Thanks in advance for you help.
I started to explore the IOperationInvoker to intercept the operation before it is actually invoked
I have a similar scenario to deal with and any pointers on how you solved the problem would be highly appreciated.
Best option would be for the "RoutingService" to NOT be a sealed class - this way, we can create our own service and implement the contract we want and override the action.