Thomas Martinsen explains that in Silverlight 5 it is possible to enable applications to run with elevated permissions in-browser.
Source: XAMLGeek
There are some requirements that need to be fulfilled to be able to run with elevated permissions in-browser. The XAP file needs to be signed with a certificate present in the Trusted Publishers Certificate store. Furthermore it is necessary to add a registry setting.
Thomas Martinsen has blogged about some of the new features of Silverlight 5:
In this post, Thomas Martinsen first discusses how to use linked classes in Silverlight and then talks about partial classes on the client and the server.
Source: XAMLGEEK
One of the challenges of writing managed components for Silverlight is the fact that it is not possible to use a normal .NET assembly in Silverlight projects. One way to get around this issue is to use linked and partial classes in Silverlight projects.
Here are the slides and samples from the talk of Thomas Martinsen and Martin Jespen about Silverlight patterns and framework at the monthly Silverlight Usergroup meeting in Denmark.
I the first part of the talk, Martin showed the differences between MEF and Unity and wrapped up by showing some of the possibilities in PRISM. [...] In the second part of the talk, I showed how to expose an OData feed using a WCF DataService and access the data from a Silverlight application.
In this post, Thomas Martinsen shows how to expose data from an existing data source and access the data in a Silverlight application.
OData (Open Data Protocol) is a web protocol for querying and updating data build upon web technologies such as HTTP, AtomPub and JSON. OData can be used to expose and access data from a several types of data source like databases, file systems and websites. OData can be exposed by a variety of technologies – first and foremost .NET but also Java and Ruby. On the client side OData can be accessed by .NET, Silverlight, WP7, JavaScript, PHP, Ruby and Objective-C just to mention some of them. This makes OData very attractive to solutions where data need to be accessed by several clients.
In this post, Thomas Martinsen explains how to create a ResourceDictionary for Windows Phone 7.
WP7 is based on Silverlight 3+ and by default it’s not possible to create a new resource dictionary. However it’s pretty easy to work around – just follow the same guidelines as if it was in Silverlight 3.