vote up 0 vote down star

Is it possible to access the Windows 7 Sensor and Location platform from Silverlight? In particular I would like to know about the location data (GPS) and the ambient light sensor.

Edit: I would assume that the way to do this would be with C# in the code behind file.

flag

75% accept rate

2 Answers

vote up 1 vote down

The Silverlight security model is explained (somewhat) here http://blogs.msdn.com/shawnfa/archive/2007/05/09/the-silverlight-security-model.aspx

The Win7 Sensor API is a native API and from .NET requires P/Invoke calls, this in a silverlight context is referred to as critical code (IMO very poorly named, but there you have it) and needs to be in an intermediate layer, so it should be doable but will not be portable.

link|flag
While the sensor API is native, there is a .NET Sensor and Location Interop Library - see windowsteamblog.com/blogs/developers/…. – JonnyBoats May 12 at 2:16
vote up 1 vote down

No. Silverlight is supposed to be cross-platform and the Sensor and Location stuff in Win7 is not available anywhere other than Win7. You could try some complicated mix of Silverlight + .NET, but then it would be silly to use Silverlight when the whole .NET/WPF platform is available.

link|flag
Yes, Silverlight is cross platform. It is not true that SIlverlight applications are limited to cross platform functions. A Silverlight app can use lots of .NET calls on Windows that are not available on a Mac. – JonnyBoats May 12 at 2:19
Such as what? If you are referring to the PowerPC Macs, then the answer is sortof. The PowerPC run only Silverlight 1.0 which is the media streaming version of Silverlight. The whole point of Silverlight is that you can write one, deploy once, and use anywhere. And as such, why in the world would they create Silverlight to favor Windows and procced to destroy their architecture. It just makes no sense why it would be that way. And as my credibility, I have been programming Silverlight 2 as part of my job since it was released, and I test most of my work on a Mac. – McAravey May 12 at 2:56
"Such as what?" For example, monitoring the mouse wheel silverlightfoundry.blogspot.com/2009/04/…. I don't have a Mac, but I don't think Apple mice have mouse wheels do they? I agree with you that one could use these Win 7 features from other applications (.NET/WPF), but my question is not "What is the best framework to use Win 7 features", I have a client that wants a SIlverlight web app (WPF is not an option) and wants support for the abbient light sensor at a minimum. I just need to know if it is possible? – JonnyBoats May 12 at 11:30
The simple answer is no. Your example will still work on a Mac (yes, it does have a wheel) but the problem is Macs are not Win7. Even if it is possible to dodge around through JavaScript or something, you whould still need to download a small library of some sort to report the ambient light. At this point it is now a requirement to have .NET, which is not good. – McAravey May 12 at 13:30

Your Answer

Get an OpenID
or

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