does silverlight support remoting? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T06:11:40Z http://stackoverflow.com/feeds/question/291253 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/291253/does-silverlight-support-remoting 3 does silverlight support remoting? Jeremy 2008-11-14T20:15:33Z 2008-11-14T23:04:25Z <p>Does silverlight support the remoting functionality of the .net framework?</p> http://stackoverflow.com/questions/291253/does-silverlight-support-remoting/291287#291287 1 Answer by Tim Heuer for does silverlight support remoting? Tim Heuer 2008-11-14T20:25:05Z 2008-11-14T20:25:05Z <p>Not implemented exactly like the full .NET framework, no. But Silverlight supports Sockets if you need that level of communication.</p> http://stackoverflow.com/questions/291253/does-silverlight-support-remoting/291730#291730 3 Answer by Craig Nicholson for does silverlight support remoting? Craig Nicholson 2008-11-14T23:04:25Z 2008-11-14T23:04:25Z <p>Due to the security requirements of being sandboxed in the host web browser, binary serialization is not supported. So no, .NET Remoting is not supported. Thank goodness we have a fairly sufficient WCF implementation.</p>