Questions tagged [claims-based-identity]

Application model for presenting an identity to a claims aware application. This identity contains claim elements, such as email address or username, in a secure package from a trusted source. This model separates the application from the authentication mechanism.

Resources

Wikipedia Entry - Claims-based identity

MSDN Article - Exploring Claims-Based Identity by Kieth Brown

1595 questions
0
votes
2 answers

Getting Access token

I have claims/Auth_token information, which looks like { "claims": null, "auth_token": "ABCDEFGHIJKLMNOP==", "refresh_token": null, "auth_token_expiration": "2012-09-04T06:59:13.1343331-04:00", "refresh_token_expiration":…
0
votes
1 answer

SP2013 and Report Viewer Control

I have a SharePoint 2013 server with Claims Based Authentication and I would like to display SSRS (SQL 2012) reports using Report Viewer Control (11.0.0.0). When I try to run the report I get following error: The user does not exist or is not…
0
votes
1 answer

Is WsFederation necessarily SSO ? (.NET and WIF inside)

I'm trying making a Identity Provider for a project in .NET 4.5, using wsFederation (with WIF). One of the statements we made is that it should not be a SSO solution. I managed to get a basic version running (by taking the templates from 3.5 and…
0
votes
1 answer

Claims and query data rows

In this article (http://www.codemag.com/Article/0001308101) it is suggested that claims can be used to grand/deny certain types of access to data rows. To be more specific: the article mentions: public void ProtectedMethod() { …
Stefan
  • 17,448
  • 11
  • 60
  • 79
0
votes
1 answer

Thinktecture IdSrv - set the used identity provider name as a claim

I am using the awesome ThinkTecture Identity (IdSrv) and Authorization (AS) servers. I have IdSrv setup with multiple Identity Providers (Facebook, ADFS, Google etc). I have the flows demo running and everything works perfectly, I am currently…
morleyc
  • 2,169
  • 10
  • 48
  • 108
0
votes
1 answer

Receiving a list of values in a Claim from ADFS

I am running an MVC5 project that authenticates with claims received from ADFS. For a specific claim type, I need to include a list of organizations that the user has access to see. Can this be done by including the list as properties of the Claim,…
severin
  • 5,203
  • 9
  • 35
  • 48
0
votes
1 answer

WIF ClaimsPrincipal.BootstrapContext is always null ( 4.5)

I've got an MVC5 app defended by JWT Tokens from ACS. Unauthenticated users are redirected to the ACS login page, where they select an IdP and enter their credentials. They are redirected back to my MVCApp with a JWT Token thats authenticated…
cdarrigo
  • 964
  • 1
  • 8
  • 26
0
votes
1 answer

Can claim based security be used to provide user access to data?

I am not sure if this question is appropriate here, so please be gentle. I recently read about .NET Claim based security as I understand it, it is used to control a user's access to different functionality. In a bottle: a user can claim access to a…
Stefan
  • 17,448
  • 11
  • 60
  • 79
0
votes
1 answer

How to apply claims-based authentication to a .NET 4 application?

AFAIK, .NET 4.5+ support claims-based authentication but not the lower versions, e.g. .NET 4 apps. Is there any way to apply claims-based authentication to my applications (as Relying Parties) without upgrading them to .NET 4.5 to have the benefits…
0
votes
1 answer

Asp.Net MVC HTTP Error 401.0 – Unauthorized

I have an MVC application, which uses claims authorization, based on great tutorial available here. In the code I override CheckAccess method of ClaimsAuthorizationManager to implement my own logic against each resource and action public class…
0
votes
1 answer

Claims-based authorization, can I avoid exceptions?

I just started a new job and was assigned as a first task to improve an existing app. This app is a simple profile manager with profile creation, edition.... and uses claims-based authorization to determine if the current user is able to, say,…
Damascus
  • 6,553
  • 5
  • 39
  • 53
0
votes
1 answer

Relying Party - Unique Signing certificate condition in ADFS 2.1

I was trying to add two RP's (Relying Party ) in ADFS 2.1 for the same customer. They use the same signing certificate in both the applications. But while updating in Windows Server 2012 / ADFS 2.1 I am receiving the below error. MSIS7613: The…
Karthik
  • 3,075
  • 3
  • 31
  • 61
0
votes
1 answer

Identity Management and SSO for ASP.NET MVC

I am currently evaluating possible Identity Management (IdM) solutions that enable single user identity store and SSO across applications. I am leaning heavily toward Thinktecture IdentityServer v2, but I am not able to validate that all of the…
0
votes
1 answer

How to send AD-groups from specific location in AD as role claims in ADFS

I want my ADFS 2012 R2 to send group-membership from a specific location in Active Directory, how can I do this? I tried "Send LDAP attributes as claims", Token-Groups - Unqualified Names => Group, but that gives me every group the user is a member…
Thomas
  • 355
  • 1
  • 4
  • 17
0
votes
1 answer

How to deal with claims which are expired

Building an ASP.NET MVC app with ASPNET identity with claim based authorization, wondering what should happen when an claim is expired. e.g. In my claims, i stored a person's claim as claimtype ="Capability", claimvalue = "driver" If this person's…
1 2 3
99
100