Silverlight

Silverlight
Reusable, Maintainable, and Extensible WCF Security

Lately I’ve been having a lot of fun architecting and developing a Silverlight project at work that uses WCF to communicate with a backend CMS system. One of the challenges however, was coming up with a reusable, maintainable, and extensible means of applying security to the WCF services. My solution just happens to be the topic of this post. Luckily, I stumbled upon a post by David Betz (Understanding WCF Services in Silverlight 2) in which he walks the reader through a thorough tutorial on the proper way of using WCF with Silverlight. If you haven’t already read Understanding WCF Services...

posted @ Thursday, October 22, 2009 10:34 PM | Feedback (11)

Simple Silverlight Security Preview

I love the [Authorize()] attribute in ASP.NET MVC for 2 main reasons: It’s easy to use. It “feels” lightweight. I wish Silverlight/Prism had a similar security mechanism – but it doesn’t (at least not that I’ve found). Being new to the Silverlight scene I figured I’d take a stab at creating a reusable security mechanism that could be used in a stock Silverlight or Silverlight/Prism application. The only requirements are that it must: Be easy to use. Feel lightweight....

posted @ Sunday, April 05, 2009 9:55 PM | Feedback (13)

Part 2: Configuring the Prism.Framework.Web.Shell Project

In Part 1 we laid the foundation of our Silverlight/Prism solution by setting up the following projects: Prism.Framework.Api, Prism.Framework.Web.Shell, Prism.Framework.Web. In Part 2 we’re going to pick up where we left off and configure our Prism.Framework.Web.Shell project for use with the Prism framework. Before we begin, let’s quickly review the prerequisites. Prerequisites You’re familiar with the Prism guidance concepts and understand why you would use it to build a Silverlight application. If you’re not familiar with Prism and it’s concepts, stop right now and read the documentation on MSDN. I’ll wait for you, I...

posted @ Sunday, April 05, 2009 8:51 PM | Feedback (6)

Part 1: Setting up our Silverlight/Prism Solution

As I mentioned in my very first blog post, I intend on writing a series of posts about using Silverlight with Prism – something similar to The Application Corner with Tim Heuer. In order to get a jump start on the series, I thought it’d be a good idea to get the “setup” post done and out of the way. So without further ado… Prerequisites In order to follow along with this post and series, I assume the following: You’re familiar with the Prism guidance concepts and understand why you would use it to...

posted @ Sunday, March 22, 2009 7:11 PM | Feedback (20)