Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a multiplayer game using WCF in c#. There are 2 Clients and one server.

My question is how to implement the following functionality:

ClientA calls server and server Calls ClientB as a callback? is it possible?

What I am trying to do is when ClientA sends message to server server delivers it to ClientB as a callback or whatever way possible.

share|improve this question

1 Answer

ClientA calls server and server Calls ClientB as a callback? is it possible?

Yes. It is done by programming.

A gets the message and determines where to forward it. All clients are connected by bidirectional channels to the server, so the server CAN forward the message to B.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.