Amazon.com Widgets

Using ASP.NET Authentication in a Web Service with Silverlight

A reader recently asked me to expand on the ASP.NET Authentication + Silverlight concept I started.. Specifically they wanted to do know how they can have a web service that returns different results depending on who calls the service (and what role they are in). 

Here is my quick walk through of adding that capability to the Silverlight+ASP.NET AppServices sample.

First, let's look at the scenario we are trying to enable.  I wanted to add a "Fire Bob" button. Hopefully, no line of business application has a "fire employee" button, but I thought it showed of the concepts well.   Clearly only managers should be able to fire bob, so the button should be grayed out if you are not logged in or logged in but not in the manager role. 

image

Logging as manager enables the button and clicking on it actually does the firing and reports status.  Notice the background color is a user preference of manager. 

image

And when logged in as an employee, the button is grayed out.

image

 

Defining the service

The first step to enabling this is to define a web service that will fire the employee and offer a way to check to see if you can fire the employee. 

In the web project, add a new item and select the new (in Beta2) Silverlight-enabled WCF service

image

Then define the service as such:

using System;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.Web;

[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = 
AspNetCompatibilityRequirementsMode.Allowed)] public class FireEmployeeService2 { [OperationContract] public void FireEmployee(string employeeName) { if (CanFireEmployees()) { DoTheDirtyWork(employeeName); } } public void DoTheDirtyWork(string employeeName) { //Proceed to fire the employee } [OperationContract] public bool CanFireEmployees() { return HttpContext.Current.User.IsInRole("Management"); } }

Notice we are defining two entry points, one to check (CanFireEmployees) and one the actually fire. Clearly in a real world scenario you'd want a few more checks here and more of a model where you start a workflow..    The key thing here is the call to User.IsInRole().. the great thing here is that logging in on the client means you are also logged in on the server!  So this just works. 

In the Silverlight project, right click and add a service reference.  Hit "Discover" and select the right one.

image

In the login_Competed method, go ahead and check to see if this person can fire the employee

FireEmployeeService2Client fireClient = new FireEmployeeService2Client();
fireClient.CanFireEmployeesAsync();
fireClient.CanFireEmployeesCompleted += 
    new EventHandler<CanFireEmployeesCompletedEventArgs>(fireClient_CanFireEmployeesCompleted);
this.fireButton.IsEnabled = false;

Then when the call completes,simply set the buttons enable status based on the results. 

void fireClient_CanFireEmployeesCompleted(object sender, CanFireEmployeesCompletedEventArgs e)
 {
     this.fireButton.IsEnabled = e.Result;
 }

Then, the actual implementation of the fire button is streight forward, following all the patterns we have setup for this sort of thing. 

private void fireButton_Click(object sender, RoutedEventArgs e)
 {
     this.fireLabel.Text = "Trying to fire...";
     var client = new FireEmployeeService2Client();
     client.FireEmployeeAsync("bob");
     client.FireEmployeeCompleted += new EventHandler<AsyncCompletedEventArgs>(client_FireEmployeeCompleted);
 }

 void client_FireEmployeeCompleted(object sender, AsyncCompletedEventArgs e)
 {

     if (e.Error != null)
         fireLabel.Text = e.Error.ToString();
     else
         fireLabel.Text = "Call Succeed";
 }

Hope that helps!  you can get the full project here

Published 23 June 08 04:45 by BradA

Comments

# &raquo; Using ASP.NET Authentication in a Web Service with Silverlight said on June 23, 2008 8:42 AM:

PingBack from http://net.blogfeedsworld.com/?p=9981

# Denho Geldenhuys said on June 23, 2008 9:31 AM:

Brad, it seems like the link to download the full project is not working.

Looking forward to the sessions in Johannesburg tomorrow :-)

# Kashif said on June 23, 2008 11:01 AM:

My silverlight app has a media player and I need to track the video start and completion time. I have service that stores this information in the database. Is there a way to know if this service is being called from my SL app or a user is calling it directly?

# BradA said on June 23, 2008 11:33 AM:

Denho --  Ahh, yes.. My download link was broken... I think I have fixed it now, can you check again?

Oh, and I am really looking forward to the talks... it will be lost of fun!

# BradA said on June 23, 2008 11:40 AM:

Kashif  - Have you checked out the IIS7 MediaPack?  my feeling is that there willl be a more secure way to do that there.  http://www.iis.net/default.aspx?tabid=22

If you are just looking for obscurity (rather than security), you could always have the client and server both perform some calculation and pass that as an argument..  

# nick said on June 23, 2008 11:46 AM:

"lost of fun" ???

"In the login_Competed handler, go ahead..."

you're in a rush, i know :)

# timheuer said on June 23, 2008 12:27 PM:

there is also a video walk through of this here: http://silverlight.net/learn/learnvideo.aspx?video=56228

# Bob Archer said on June 23, 2008 12:38 PM:

Brad,

I seem to remember that there was some type of Proxy Service to the Membership/Role providers already that you could access rather than having to write a "CanFireBob" svc method. Wouldn't this service proxy be available for Silverlight? I think it was originally added for MS Ajax though.

BOb

# Community Blogs said on June 23, 2008 8:53 PM:

Rob Houweling with a Sketch Application (2 parts), Martin Mihaylov continuing with Shapes, Karen Corby

# Denho Geldenhuys said on June 24, 2008 12:21 AM:

Tested the download link again and its working now. Thank you.

# tood Kohl said on June 24, 2008 3:08 AM:

the similar article can also be found at http://webhosting.asphostcentral.com/?cat=33

# DotNetKicks.com said on June 24, 2008 12:07 PM:

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# Pietro Brambati Blog said on July 1, 2008 5:33 AM:

Percorso formativo in italiano Aggiornamento del percorso formativo su Silverlight 2, ecco i link diretti,

# Pietro Brambati Blog said on July 4, 2008 3:12 AM:

Percorso formativo in italiano Aggiornamento del percorso formativo su Silverlight 2, ecco i link diretti,

# Pietro Brambati Blog said on July 18, 2008 8:21 AM:

Updated 18/7/2008 Percorso formativo in italiano Aggiornamento del percorso formativo su Silverlight

# Lipitor. said on July 22, 2008 2:19 AM:

Generic lipitor. Co q10 and lipitor. Lipitor and side effects. Lipitor and muscle pain. Lipitor side effects.

# Cheap zolpidem persriptions. said on August 7, 2008 3:08 AM:

Cheap zolpidem. Zolpidem next day delivery. Zolpidem abuse.

# Li Chen's Weblog said on August 26, 2008 1:43 AM:

Silverlight 2 line-of-business application

New Comments to this post are disabled

Search

Go

This Blog

Syndication

Page view tracker