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.
|
feedback
|
|
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. | |||||||||
feedback
|
|
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 | |||
|
feedback
|
|
Silverlight 4 enables you to communciate with COM (ActiveX). I have written a blog article about how to communicate with a COM library that supports communicating with the serial port. http://tech-michael.blogspot.com/2009/12/silverlight-talking-to-arduino.html | |||
|
feedback
|
|
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:
Cheers, Jonas | |||
|
feedback
|
|
You can do this by opening a socket connection from your Silverlight control to a local socket which intern have the COM port access | ||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
What if you want your application to run on Windows and Mac? Silverlight is a nice solution since it runs on both. If you have to write a WPF app or an ActiveX control, etc., this will bind you to Windows only again. | |||
|
feedback
|
|
You can still run it out of browser and utilise a wrapper like http://interopcom.codeplex.com/ Regards, Paul | |||
|
feedback
|