How to configure WCF to push real-time data to the client?
问题 I need to send live updates from server to client. I know that WCF generally can do this. However silverlight is a picky client.. Does anyone know how to configure WCF to send the real-time updates to Silverlight client? Snipets from configs and walkthrough will be greatly appreciated. 回答1: Use WCF Callbacks. A good walkthrough that shows several configurations for this is available on the MSDN. We used the NetTCPBinding at my last job to great effect. It's very fast and efficient. The