Connecting Silverlight to the local computers COM port - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:04:39Zhttp://stackoverflow.com/feeds/question/227174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port2Connecting Silverlight to the local computers COM portNick Berardi2008-10-22T19:18:43Z2008-10-23T06:22:46Z
<p>I have been searching high and low for a way to get my silverlight application talking to the COM port on my local computer. Has anybody out there been able to get Silverlight to successfully connect to the COM port of you local computer? If so can you point me to the documentation.</p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227194#2271944Answer by Chris Pietschmann for Connecting Silverlight to the local computers COM portChris Pietschmann2008-10-22T19:24:23Z2008-10-22T19:24:23Z<p>This can not be done with Silverlight.</p>
<p>Why not just use a standard .NET desktop app? If you need to easily deploy over the web, just use Click-Once for deployment.</p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227196#2271961Answer by Ely for Connecting Silverlight to the local computers COM portEly2008-10-22T19:25:07Z2008-10-22T19:25:07Z<p>By local computer do you mean the computer the silverlight client app is running on? Silverlight runs in a security sandbox, and it is doubtful you can connect to hardware resources like so.</p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227216#2272164Answer by Jon Galloway for Connecting Silverlight to the local computers COM portJon Galloway2008-10-22T19:31:45Z2008-10-22T19:31:45Z<p>There's no access to computer resources, but you can communicate with sockets. So it's possible to have your users install an application which listens on a port and communicates with a COM port.</p>
<p>Why are you trying to communicate with a COM port? If you're looking for webcam support, take a look at Jonas's hack which uses Flash to get webcam input:
<a href="http://jonas.follesoe.no/WebcamInSilverlight2MacGyverStyle.aspx" rel="nofollow">http://jonas.follesoe.no/WebcamInSilverlight2MacGyverStyle.aspx</a></p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227247#2272471Answer by Nick Berardi for Connecting Silverlight to the local computers COM portNick Berardi2008-10-22T19:39:14Z2008-10-22T19:39:14Z<p>Jon,</p>
<p>I am actually trying to read my GPS from Silverlight. I have an interesting concept that I wanted to try out, but I was trying to go for a zero install footprint. </p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227326#2273260Answer by Ely for Connecting Silverlight to the local computers COM portEly2008-10-22T20:01:19Z2008-10-22T20:01:19Z<p>Would WPF be a better solution?</p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/227712#2277120Answer by Jonas Follesø for Connecting Silverlight to the local computers COM portJonas Follesø2008-10-22T22:10:35Z2008-10-22T22:10:35Z<p>I think the guys have summed it up nicely - Silverlight is in a tight sandbox and you will not get access to the COM port or other local resources.</p>
<p>So let's start to think about alternatives:</p>
<ul>
<li>Use ClickOnce and a full .NET application - Gives you easy deployment and udpates, and you will have the full power of the .NET framework.</li>
<li>Use a XBAP (Browser Deployed WPF) that requests some extra permissions. Would live inside the browser, but only run on Windows machines with .NET 3.0 / 3.5 installed</li>
<li>Write an ActiveX control that talks to the GPS device and expose an API. Then use JavaScript to consume this API and interact with the JavaScript code from Silverlight. This would give you a in-browser GPS application, but your users would have to install an additional GPS ActiveX component.</li>
</ul>
<p>Cheers,
Jonas</p>
http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port/228701#2287010Answer by Jobi Joy for Connecting Silverlight to the local computers COM portJobi Joy2008-10-23T06:13:20Z2008-10-23T06:22:46Z<p>You can do this by opening a <strong>socket</strong> connection from your Silverlight control to a local socket which intern have the COM port access</p>