does silverlight support remoting? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T06:11:40Zhttp://stackoverflow.com/feeds/question/291253http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291253/does-silverlight-support-remoting3does silverlight support remoting?Jeremy2008-11-14T20:15:33Z2008-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#2912871Answer by Tim Heuer for does silverlight support remoting?Tim Heuer2008-11-14T20:25:05Z2008-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#2917303Answer by Craig Nicholson for does silverlight support remoting?Craig Nicholson2008-11-14T23:04:25Z2008-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>