Did Wcf replace socket? for client server application i need that client send some messages to server and the server can do the same thing without waiting request from any client. So can i do this or wcf can only expose many services that client need and the communication can't be interactif and bidirectionnal? thanks
问问题
2210 次
2 回答
4
你希望连接是持久的吗?如果是这样,那么这听起来对 WCF 来说不是一个好案例。也许可以看看ZeroMQ之类的东西。
于 2012-04-21T21:31:31.507 回答
2
Wcf 永远不会替换套接字。WCF 只是在 TCP 上实现了一些具体的协议,所以如果你需要其他的东西,比如 IP 甚至 UDP,你仍然需要使用套接字。
如果你需要一个稳定的 TCP 连接,你仍然需要一个套接字。此讨论也可能对您有所帮助。 http://forums.silverlight.net/t/17502.aspx/2/10
于 2012-04-21T21:33:38.540 回答