Connecting Silverlight to the local computers COM port - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:04:39Z http://stackoverflow.com/feeds/question/227174 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227174/connecting-silverlight-to-the-local-computers-com-port 2 Connecting Silverlight to the local computers COM port Nick Berardi 2008-10-22T19:18:43Z 2008-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#227194 4 Answer by Chris Pietschmann for Connecting Silverlight to the local computers COM port Chris Pietschmann 2008-10-22T19:24:23Z 2008-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#227196 1 Answer by Ely for Connecting Silverlight to the local computers COM port Ely 2008-10-22T19:25:07Z 2008-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#227216 4 Answer by Jon Galloway for Connecting Silverlight to the local computers COM port Jon Galloway 2008-10-22T19:31:45Z 2008-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#227247 1 Answer by Nick Berardi for Connecting Silverlight to the local computers COM port Nick Berardi 2008-10-22T19:39:14Z 2008-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#227326 0 Answer by Ely for Connecting Silverlight to the local computers COM port Ely 2008-10-22T20:01:19Z 2008-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#227712 0 Answer by Jonas Follesø for Connecting Silverlight to the local computers COM port Jonas Follesø 2008-10-22T22:10:35Z 2008-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#228701 0 Answer by Jobi Joy for Connecting Silverlight to the local computers COM port Jobi Joy 2008-10-23T06:13:20Z 2008-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>