1
vote
1answer
35 views

How to get signed in user identity in a website after signing in with another website using ACS

I have one website which is configured to use Azure ACS. When the user signs to this website, how will I get the user identity when he visits another one of my website so that the user will not need ...
2
votes
1answer
637 views

MVC3 + WIF - FederationResult missing “wctx”

I have an MVC3 app for which I want to implement claims support. My goal is as follows: provide a SignIn link, which when clicked displays a popup window with username/password and ...
0
votes
1answer
92 views

Federated Security/STS

I have a asp.net site that uses federated security for authenticating the user. Therefore a user navigates to the url which is redirected to a login page and if successful gets routed back to the ...
2
votes
1answer
765 views

Extending ClaimsIdentity in MVC3

I've got my claims set-up with MVC3 using azure and everything is going well. What I need to do now is extend the Claims Identity that's in the current thread / http context and add my own ...
2
votes
3answers
571 views

Asp.net MVC - Map Claim identity to custom user identity

I'm trying to figure where is the best extension point in the ASP.NET MVC3 infrastructure to map custom user informations (loaded from local database) after received the Claim Authentication from ...
0
votes
1answer
202 views

Error using Json-feed for login: ACS50011

I have an RP for which I've built a login page using the Json feed from ACS. The IP images are linked to the .LoginUrl attribute of the feed and when I click on one of the images it correctly jumps ...
0
votes
1answer
606 views

Implementing an Identity Provider

I have implemented App Fabric Labs' mechanism for authentication into my MVC3 app so now I can log in with Facebook, Google, Yahoo and LiveID. yea!! now, what if a user doesn't want to use any of ...
0
votes
1answer
324 views

using Microsoft.IdentityModel.Claims; fails in my Home controller!

I'm following the Microsoft guide for implementing federated identities. As it doesn't state where the code should be placed I created a file \App_Code\Auth.cs for it. when it's time to implement ...
11
votes
2answers
6k views

Adding Claims-based authorization to MVC 3

I have an MVC app that I would like to add claims-based authorization to. In the near future we will use ADFS2 for federated identity but for now we will used forms auth locally. Has anyone seen a ...