Silverlight 3.0 "Push" Capability information - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:19:09Z http://stackoverflow.com/feeds/question/678504 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/678504/silverlight-3-0-push-capability-information 0 Silverlight 3.0 "Push" Capability information pearcewg 2009-03-24T17:53:21Z 2009-04-07T12:16:54Z <p>Does anyone have a good reference point, or can provide a summary of the enhanced "push" implementation to be changed/added in Silverlight 3.0?</p> <p>I would like to compare this area to Silverlight 2.0 and to XMPP/Jabber.</p> http://stackoverflow.com/questions/678504/silverlight-3-0-push-capability-information/678557#678557 0 Answer by Andrew Grant for Silverlight 3.0 "Push" Capability information Andrew Grant 2009-03-24T18:08:03Z 2009-03-24T18:08:03Z <p>Have you looked at the presentations from <a href="http://sessions.visitmix.com" rel="nofollow">Mix'09</a>? <a href="http://sessions.visitmix.com/MIX09/T42F" rel="nofollow">This one</a> in particular may be related.</p> http://stackoverflow.com/questions/678504/silverlight-3-0-push-capability-information/725396#725396 2 Answer by Kevin Hoffman for Silverlight 3.0 "Push" Capability information Kevin Hoffman 2009-04-07T12:16:54Z 2009-04-07T12:16:54Z <p>There are two main ways that you can get push functionality in Silverlight 3. The first is what you've seen at MIX using the duplex channel. The duplex channel in SL3 is essentially unchanged from the duplex channel in SL2...the main difference is that now you can add a reference to a duplex channel service within Visual Studio 2008 and the whole act of building duplex channel client/server pairs is MUCH easier.</p> <p>The other way you can get push is to use a "comet server". Basically all of the servers in this family allow a client to open a socket and then continuously suck off that socket, allowing data to be pushed into the socket from the server. This is how Google and about 30 billion other Ajax sites/frameworks handle push to client. Some popular comet/push servers include Kaazing and Lightstreamer.</p>