문제

I need to re-write an existing client-server application. The existing application communicate using socket, I have to convert it into WCF.

At server side I need to

  • Monitor connected clients
  • Validate client request
  • Broadcast live data (comming from diff source).
  • Listen to client and respond to it

At client end I need to

  • Receive server broadcast and display it on UI.
  • Display UI and take input from user
  • Submit user data to server and display response

I have chosen tcp protocol on self hosting environment.

I need some immediate level references (link, tutorial, book)...

도움이 되었습니까?

해결책

You can try this : WCF on MSDN

I don't know if you can get it, but Microsoft book on WCF (course 6461A) is not bad.

다른 팁

Have a look at this MSDN article, covers pretty much everything you need to know to build a duplex service in WCF:

http://msdn.microsoft.com/en-us/magazine/cc163537.aspx

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top