Search code examples
c#wcfbindingcallbackduplex

Can I use WCF duplex binding to relay message?


I have a Client Application, a server and another client, lets call it third party. I have a callback interface as part of my contract that is implemented both by the third party and the client.

The third party will call a server operation(method) then the server will trigger a callback but instead of calling the callback of the third party, it will call the callback implementation of the client.


Solution

  • I think I found the solution..

    Here's the link. http://msdn.microsoft.com/en-us/magazine/cc163537.aspx

    Try to look at figure 6. That's what I'm trying to achieve.