vote up 2 vote down star
2

I am building my first Silverlight 3 + RI Services application and need some help.
It will be deployed in an controlled corporate intranet, 100% windows clients. I have started from the Silverlight Business Application template.
These are my requirements:

  1. Upon launch the application needs to recognize the currently logged-in user.
  2. The application needs to have access to other properties of the user in AD, such as email, full name, and group membership.
  3. Group membership is used to grand certain features in the application.
  4. A "login as a different user" link is to be always available - Some machines are available throughout the enterprise, logged-in as a certain generic user (verified by the absence of certain membership groups). In this case one can enter credentials and log in (impersonate) to the application as a user different from the one already logged-into the machine.
  5. This user is to be used in service calls


I have modified the following in the default Business Application template:

  1. App.xaml: appsvc:WindowsAuthentication instead of the default FormsAuthentication
  2. Web.config: authentication mode="Windows"

With these modifications I resolve requirement #1 (get the currently logged-in user). But when I examine RiaContext.Current.User, I don't have access to other properties from AD, such as group memberships. How can I achieve my other requirements?

Thanks for your help.

flag

Did you get anywhere with this? – Goober Sep 25 at 14:59
No. I am very surprised nobody suggested a solution. I've also asked the same question at the RIA Services forum at silverlight.net and I've also got no response there! – Gustavo Cavalcanti Sep 25 at 16:31
(forums.silverlight.net/forums/p/…) – Gustavo Cavalcanti Sep 25 at 16:33
What sources of information have you been following to build your Silverlight Business Application? – Goober Sep 28 at 9:43
I have been following Brad Abrams samples which are fantastic. This (blogs.msdn.com/brada/archive/…) particular one is supposed to cover Authentication using RIA with Silverlight but I feel that it is not in-depth enough for me to actually implement what I need. What do you think? – Goober Sep 28 at 9:46
show 1 more comment

1 Answer

vote up 1 vote down check

Hi! In order to do this you will have to write your own Profile Provider and then modify the user class to include these profile properties which you can then access.

Have a look at page Section 13.3 of the RIA Services Overview document and let me know if you need any help.

We are just in the middle of implementing a RIA Services application and have written our own custom membership provide and profile provider so let me know if you need a hand.

link|flag
Hi Michal! I've had so much trouble doing this. I don't quite understand what exactly it is I need to do? Do I need to use a database to store the user credentials? I feel like i've totally missed something, all of the tutorials are so vague. I would really appreciate some help and samples etc. I've just finished writing an entire RIA app thats got some awesome features but I can't move it to the cloud without authentication :-( – Goober Oct 3 at 10:09
1  
Yeah we found it a bit difficult as well. In point summary we did the following: 1) Implemented a membership provider by overriding the MembershipProvider Class 2) Implemented a Profile Provider by overriding the ProfileProvider class 3) Implemented a Role Provider. 4) Added all of that to the web.config (very important) of the silverlight app Keep in mind we are authenticating against AD but not using the ASP.NET membership or profile providers. Drop me an email and I can provide some samples. Cheers – Michal Oct 4 at 17:52

Your Answer

Get an OpenID
or

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