How to use itfoxtec-identity-saml2with Forgerock SSO - itfoxtec-identity-saml2

I am trying to use the itfoxtec-identity-saml2 code samples from Github to use as my ASP.NET client app to autenticate with Forgerock. But it seems the are no samples-code-documentation on this. Am I moving the wrong path?
Is itfoxtec-identity-saml2 even compatible with Forgerock SSO server?

ITfoxtec Identity Saml2 support SAML 2.0 and basically supports all IdPs which support SAML 2.0.
It looks like Forgerock SSO support SAML 2.0 in this guide: https://backstage.forgerock.com/docs/am/6.5/saml2-guide/
It looks

Related

Incorporate WebForms Application with Azure AD for SAML based SSO authentication

I am trying to incorporate ITFoxtec SAML with my webforms applications and Azure AD for SAML based SSO authentication. Can anyone please provide me any reference link or guide me regarding this to work?
Target Framework: .NET Framework 4.8(Web forms)
I have gone through the samples given in the github repo but still unable to proceed further.https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2
I'm afraid that there is not a .NET WebForms sample but it is possible to implement ITfoxtec Identity SAML 2.0 in a .NET WebForms application.
Please se the following links:
ITfoxtec SAML 2.0 and .NET ASPX application (not MVC)
itfoxtec-identity-saml2 .net framework 4.6 web forms guidance
ITfoxtec SAML 2.0 and ASP.NET Web Forms (ASPX) HttpRequest
Alternatively, you can connect to Azure AD using OpenID Connect or use FoxIDs as an security broker to concert between the Azure AD SAML 2.0 connection and your application using OpenID Connect.

How to create a IdP with ITfoxtec

i am interested to create a IdP (Identity Provider) with SAML.
It´s possible to create a full IdP funcionalities with ITfoxtec Nuget?
Have any example with ASP.Net, c#?
Yes, it is possible to implement an IdP using the ITfoxtec Identity Saml 2.0 library. You can see an ASP.NET MVC core IdP example at https://github.com/ITfoxtec/ITfoxtec.Identity.Saml2/tree/master/test/TestIdPCore.
I have implemented the SAML 2.0 IdP part of FoxIDs using the ITfoxtec Identity Saml 2.0 library.

creating a web application with Microsoft AD SAML

I have implemented OAUTH 2.0 authentication with MSAL libraries as below.
clientApplication.getAuthorizationRequestUrl(parameters).toString(); to invoke authorization endpoint and
clientApplication.acquireToken(authorizationCodeParameters) to aquire token from authorization code.
Now I have to implement the same flow for SAML V2.0 protocol too and need some help from the Microsoft team in finding related libraries with which I can invoke /saml2/ endpoint and fetch saml assertions.
I'm using Spring boot 2.2.
Thanks in advance
There are no official Microsoft SAML libraries.
There is a list of client-side libraries.

Is is possible to implement SSO with SAML 2.0 without spring boot

I need to implement SSO for a legacy application built in java 1.6 and spring framework 3.1.2 using SAML2.0. I have already implemented SSO using SAML2.0 with the latest spring-boot. Is it possible to implement SSO without using springboot.
Spring is essentially a SAML client-side library.
There are others.
In the Java world, OpenSAML is a possible option.

Is there a way to provide SAML sp implementation using an Apache filter?

I'm really new with SAML SSO. I'm woking with an idp webapp that will support SAML authentication.
The problem is that I will need that other sp authenticate with my idp and I don't want to implement all the protocol in every platform (Python, PHP, Java, etc).
I was thinking if there's a way to implement the sp authentication flow using an apache filter.
Has someone thought about this?
Thanks.
mod_mellon is what you're looking for: https://github.com/UNINETT/mod_auth_mellon
Using Shibboleth as a SAML client in conjunction with Apache web server may be an alternative.

Resources