How to push data to variety of different client types in near real time? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T08:57:45Z http://stackoverflow.com/feeds/question/50831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/50831/how-to-push-data-to-variety-of-different-client-types-in-near-real-time 2 How to push data to variety of different client types in near real time? mikeb 2008-09-08T22:19:15Z 2008-10-15T08:48:32Z <p>We need is to push sports data to a number of different client types such as ajax/javascript, flash, .NET and Mac/iPhone. Data updates need to only be near-real time with delays of several seconds being acceptable. </p> <p>How to best accomplish this?</p> http://stackoverflow.com/questions/50831/how-to-push-data-to-variety-of-different-client-types-in-near-real-time/50857#50857 -2 Answer by 17 of 26 for How to push data to variety of different client types in near real time? 17 of 26 2008-09-08T22:31:35Z 2008-09-08T22:31:35Z <p>I would go with XML. XML is widely supported on all platforms and has lots of libraries and tools available for it. And since it's text, there are no issues when you pass it between platforms.</p> <p>I know JSON is another alternative, but I'm not familiar enough with it to know whether or not to recommend it in this case.</p> http://stackoverflow.com/questions/50831/how-to-push-data-to-variety-of-different-client-types-in-near-real-time/204085#204085 1 Answer by Sire for How to push data to variety of different client types in near real time? Sire 2008-10-15T08:48:32Z 2008-10-15T08:48:32Z <p>The best solution (if we're talking .NET) seem to be to use WCF and streaming http. The client makes the first http connection to the server at port 80, the connection is then kept open with a streaming response that never ends. (And if it does it reconnects).</p> <p>Here's a sample that demonstrates this: <a href="http://blogs.thinktecture.com/buddhike/archive/2007/05/23/414851.aspx" rel="nofollow">Streaming XML</a>. </p> <p>The solution to pushing through firewalls: <a href="http://blogs.msdn.com/drnick/archive/2006/10/20/keeping-connections-open-in-iis.aspx" rel="nofollow" title="Keeping connections open in IIS">Keeping connections open in IIS</a></p>