Reputation: 822
I'm working on a project including WCF server and remoting clients.Now the necessary functional part of the software need to push message from server to specified client.
I know that Socket can achieve this, but I want to use WCF Only. So I find document on WCF duplex service.Here is my idea:
Question
Upvotes: 0
Views: 302
Reputation: 11763
Everything is feasible ... It's all a question of what you know, what's involved, and how much time/money you have.
I haven't worked much with duplex WCF because I had to use one way in webservices, but another approach is using a framework like XSockets . It's version 4 is in beta ATM, but the developers are quite approachable and active, so if you have any issues, they'll be happy to work.
It'll give you real time communication in both direction with one to one or one to many, and might fit your use case ...
Upvotes: 1