Questions tagged [federated-identity]

The concept of linking a single individual's digital identity across multiple (and usually disparate) IT systems. Federated identity is the larger concept encompassing narrow implementations such as Single-sign on (SSO).

The concept of linking a single individual's digital identity across multiple (and usually disparate) IT systems. Federated identity is the larger concept encompassing narrow implementations such as Single-sign on (SSO).

528 questions
0
votes
1 answer

ADFS with ASP.NET 4.5 and WIF Override NameClaimType

I am attempting to get ADFS working with ASP.NET 4.5.2 and multiple domains. As long as the ADFS server transforms the claim from "upn" to "name", everything functions correctly. However that is not possible with multiple AD forests, so I must…
0
votes
1 answer

Implementing SSO using ADFS

Am pretty new to ADFS. We have a requirement of enabling SSO between our application (A) and Client application (B). B is configured to authenticate against ADFS. We need to integrate A with B and enable SSO. User will always login from B and will…
Saravanan
  • 283
  • 2
  • 17
0
votes
1 answer

How to exchange SAML assertion between IDP and SP

Here are the snippet of code for exchanging SAML assertion between IDP and SP, I can get the SAML assertion from IDP, but the code to fetch the SAML assertion from IDP in the SP's side doesn't work. def exchange_assertion(self): """Send…
jungler
  • 45
  • 5
0
votes
1 answer

Provisioning an external user in an IAM solution

I have this question related to the process of provisioning an external user in an identity and access management solution. How to provision an external user that for example comes to do one night work or a user that is just covering another…
Adia
  • 1,171
  • 5
  • 16
  • 33
0
votes
1 answer

SessionAuthenticationModule missing in IIS

I am running IIS 7.5 on Windows 7 and I have Visual Studio 2012 and .Net Framework 4.5.1 installed. (Identity Foundation is integrated with .Net 4.5, so I think I don't have to install it seperately.) We are developing a web app with Claims based…
0
votes
1 answer

Setting Up ADFS 2.0 in Virtual Machine

I'm trying to setup a test environment on a Windows 7 professional box wherein I can test building a federated ASP.NET application that connects to an ADFS 2.0 issuer. My plan is to install Windows Server 2012 (or earlier) in a virtual machine on…
Nate222
  • 856
  • 2
  • 15
  • 25
0
votes
2 answers

Recommended Pattern for Identity Federation

I am going to talk in terms of SAML but I'm not fussed about the protocols. There will be a Federation Provider (FP) that trusts a number of external and 1 internal Identity Providers (IdP). The applications (SP) will in turn trust the FP. The SPs…
Peter Kelley
  • 2,350
  • 8
  • 26
  • 46
0
votes
1 answer

Redirect user from ADFS to alternate URL

In an ADFS RP-STS using ws-federation passive, can you redirect a user to an alternate URL, based on the value or existence of a claim, instead of sending them back to the relying party that they originally requested? For example, if a user logs…
John Hansen
  • 123
  • 1
  • 11
0
votes
1 answer

Building federation environment with ADFS 3.0 and Ping Identity

We are trying to federate our application, so that our customers can gain access to our application using their respective corporate identities. Well, I understand the mechanism of federation process, I’ve been able to setting up ADFS and I’ve…
Nicola
  • 41
  • 1
  • 5
0
votes
0 answers

OpenIDM - How to assign default groups when creating a user

I want to assign default roles (using AD groups) at the user creation in OpenIDM. I already created and setted role assignments using the OpenIDM REST API but I want to add the user to AD groups without adding him a specific role. Here is on of my…
Spawnrider
  • 1,727
  • 1
  • 19
  • 32
0
votes
1 answer

Migrate System.Security/IdentityModel to OWIN/Katana Approach

I want to migrate my security infrastructure to OWIN/Katana but i'm not very familiar with it. I hope someone can give me a ride in the right direction. Currently i use .net fwk 4.5, mvc 5 and the features in System.Security/IdentityModel. The…
0
votes
1 answer

Federated Identity- Windows Identity Server - disable cookies in the browser

I see that Federated Identity stores Security token to a cookie, after its first request to the STS(Secure Token Service). In that case if I disable cookie in my browser, how does it work. Does the authentication module again connects to the STS to…
vinoj
0
votes
1 answer

Claims and Roles

I am in the process of migrating an MVC5 application from forms authentication to federated authentication. I am using ADFS to federate my application and that is working fine. I have groups set up in AD already and thought that when I would use…
0
votes
1 answer

TFIM with ComponentSpace library?

I am trying to user Tivoli Federated Identity Manager 6.2 as identity provider and an application that have SAML 2.0 support using ComponentSpace library. Will that application be able to support TFIM or not? And if it's supported then can anyone…
0
votes
1 answer

Claims based access control - how to implement 'System' user?

There are three communicating parties in our system: Frontend Service A Service B plus we have stand-alone security token service, our identity provider. Authenticated user interacts with Frontend, it calls Service A, which in turn calls Service…