vote up 2 vote down star

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.

flag

7 Answers

vote up 5 vote down check

This can not be done with Silverlight.

Why not just use a standard .NET desktop app? If you need to easily deploy over the web, just use Click-Once for deployment.

link|flag
because I wanted a zero install scenario. – Nick Berardi Oct 22 '08 at 19:26
You should really look into Click-Once. It pretty much does "zero install". You can launch the app right from the website in One Click. – Chris Pietschmann Oct 22 '08 at 19:27
1  
Well, not really one click. They should call it Click-Once-Or-Maybe-Two-Or-Three-Times. – Jason Jackson Oct 22 '08 at 20:04
vote up 4 vote down

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.

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: http://jonas.follesoe.no/WebcamInSilverlight2MacGyverStyle.aspx

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Jon,

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.

link|flag
vote up 0 vote down

Would WPF be a better solution?

link|flag
vote up 0 vote down

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.

So let's start to think about alternatives:

  • Use ClickOnce and a full .NET application - Gives you easy deployment and udpates, and you will have the full power of the .NET framework.
  • 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
  • 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.

Cheers, Jonas

link|flag
vote up 0 vote down

You can do this by opening a socket connection from your Silverlight control to a local socket which intern have the COM port access

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.