Questions tagged [itfoxtec-identity-saml2]

Support SAML-P for both Identity Provider (IdP) and Relying Party (RP) in ASP.NET MVC and ASP.NET MVC Core.

ITfoxtec Identity SAML 2.0 is a open source package adding SAML-P support for both IdP and RP on top of the SAML 2.0 functionality implemented in the .NET.

ASP.NET MVC and ASP.NET MVC Core is supported by the ITfoxtec Identity SAML 2.0 MVC and MVC Core packages, which helps to integrate the ITfoxtec SAML 2.0 package into a MVC og MCV Core application.

252 questions
1
vote
1 answer

How I setup flow of multiple tenant in azure ad asp.net core (itfoxtec)

If you have any sample example of multiple tenants in azure ad with itfoxtec library then please suggest me.
1
vote
1 answer

implement multiple company login from azure(itfoxtec)

I have to implement multiple company login from azure so How to do this? Right now I am successfully implemented a single company sign on with ITfoxtec.Identity.SAML2 but Now I have to do multiple companies so Please guide me.
1
vote
1 answer

SecurityTokenInvalidAudienceException: IDX10214: Audience validation failed. Audiences. (itfoxtec)

Using the ITFoxtec Identity SAML 2.0 component I am facing the "SecurityTokenInvalidAudienceException: IDX10214: Audience validation failed" error. Once I read a token string in ReadClaimsIdentity. Please see attached image and link of the…
1
vote
1 answer

Sequence contains no elements error once I go from Service provider Project to Identity Project

I'm using ITFoxtec SAML 2.0 where I have started multiple projects; TestIdpCore and TestWebAppCore. Once I click on the TestWebAppCore login link, I face the error Sequence contains no elements.
1
vote
2 answers

Regarding Time out error in ITfoxtec Identity Saml 2.0

I have to implement the single sign-on functionality in my project. But once I have downloaded ITfoxtec Identity Saml2 project from Github and run the asp.net core project I have to face error like the below screen. Please revert me on the same as…
1
vote
1 answer

Claims output empty until multiple login refresh

I've setup the 'TestWebApp sample on IIS 10, federated with Azure AD. When logging in the authN completes successfully but the displayed ClaimsPrincipal.Current.Claims list is empty. Clicking the 'Login button ~3/4 times does eventually populate the…
Zer0byte
  • 21
  • 3
1
vote
1 answer

SAML2 Token Replay Validation

I've created a Issue on Github repo: https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/issues/72 Although there is a DetectReplayedTokens config setting that gets into the TokenValidationParametes, the default behavior for token replay validation…
Sudarshan Tanuku
  • 191
  • 1
  • 11
1
vote
1 answer

User.Identity.IsAuthenticated Always false in SAML 2.0 using ITFoxtec

I am using itfoxtec-identity-saml2 in my Dotnet 3.1 Project. I am initiating request from server and validating the login till here everything is working fine. After getting response assertion from server and getting claims transformed and creating…
1
vote
2 answers

ITfoxtec.Identity.Saml2 - multiple authentication schemas

Is there a way to integrate into the same project SAML authentication and form authentication? I have today only SAML authentication: services.AddSaml2("/login", true); If I add another schema after the SAML, the SAML stops working. If I add it…
borismee
  • 65
  • 1
  • 8
1
vote
1 answer

What is itfoxtec-identity-saml2 Issuer in adfs setup?

I'm setting up ITfoxtec Identity SAML2 for ADFS. What should be used as Issuer for ADFS setup? And where to get SingleSignOnDestination? Many thanks
1
vote
1 answer

ADFS integration - claim missing http://schemas.itfoxtec.com/ws/2014/02/identity/claims/saml2nameidformat

After integration with Okta, I'm trying to integrating SSO with ADFS. All goes smooth until logout. I have an exception: Caught Exception: System.ArgumentNullException: Value cannot be null. (Parameter 'uriString') at System.Uri..ctor(String…
borismee
  • 65
  • 1
  • 8
1
vote
2 answers

ITfoxtec.Identity.Saml2 Invalid URI Issue

When i use net462 for my Okta SAML implementation this throw a Invalid URL when it this new Saml2AuthnRequest(config); but on my first try using this code on netcoreapp3.1` this worked perfectly fine. Please let…
1
vote
1 answer

Azure B2C LogoutRequest Signing

I use Azure AD B2C as a SAML IDP. It's works well expect SingleLogout flow. When LogoutRequest from B2C comes to (my app) ITfoxtec it crashes because this request is not signed. I can't force Azure AD B2C to sign its' requests as well as I can't…
1
vote
1 answer

Map SAML claims using ITfoxtec.Identity.Saml2

I'm using the TestWebAppCore project to test SAML integration for an ASP.NET Core web app and i thought i got it working but the claims that are associated with the user session aren't the claims being returned by the IdP in the SAML Response and…
Bluecakes
  • 2,069
  • 17
  • 23
1
vote
1 answer

Configure SAML Single Sign-on in Azure with ITfoxtec SAML 2.0

I'm trying to implement SAML authentication in .Net Core 3.1. I'm using the sample project TestWebAppCore from this official repo. I have the values below and I need to adapt the sample project considering Azure AD as an Identity Provider: Login…