Azure Ad integration with spring mvc framework 4 - azure-active-directory

i'm working on a project developed on SPRING MVC FRAMEWORK VERSION 4 and I need to integrate it with AZURE AD for SSO authentication. Would really appreciate if anyone could provide some documentation or something which covers all the points from authenticate to redirecting the user to homepage after the authentication and all that.

Regarding Azure AD Integration kindly get the entire detailed information from the below document.

Related

Azure Saml toolkit integration with Azure web app

I am trying to implement Azure saml sso with my angular web app.
I have deployed angular web app in azure and created a enterprise application(Azure saml toolkit).
I have assigned users in first step.
I couldn't find useful links or steps to configure Azure saml toolkit and not sure how to specify
Sign-in url,Assertion url and redirect url for my site in toolkit.
Any help is appreciated.
Did you see the instructions here?
All the details are in the SAML configuration pages when configuring SSO for the enterprise application.

Blazor Server Side - SAML2 Authentication

Good Day Everyone
Our Global Company is using SAML2 for our Single Sign-On Authentication (We don't use any other external authentication like Facebook, Google and Twitter), we are successfully created a SAML2 on our ASP.NET Webforms and MVC, but haven't done it on ASP.NET Core (MVC and Blazor), I search on the internet and found this:
https://developer.okta.com/blog/2020/10/23/how-to-authenticate-with-saml-in-aspnet-core-and-csharp
I haven't applied it on my ASP.NET Core MVC project, but my team want's me to use SAML2 to my Blazor Server Application project, but when I tried to create a cookie authentication on Blazor, It seems that the authentication approach of the Core MVC and Blazor Server Side is different to each other, and I think on the link above will might not work to my Blazor App, what do you think? Does someone here has successfully created Blazor Side Application that has a SAML2 Authentication?
I hope someone can help me on this and guide me.
Thanks and regards
sorry for the late response and thanks for your suggestions, but I solved this by creating an ASP.NET Core MVC and then add the Blazor Components on it, and then using the ITfoxtec SAML 2.0, I was in a tight schedule so I chose this approach, and we are not currently using Azure, I will try your solutions if I have new project
Thanks everyone.

Azure AD Authentication of Angular app with MVC Core on Azure AppService

I'm investigating options for adding AzureAD authentication to Angular SPA application with .NET core backend. I'm using VS 2019 MVC project with Angular (same as dotnet new Angular is producing). It's using .NET Core 3.1 and Angular 8.
From what I learned so far I have 3 options:
Built in Azure App Service Authentication
Adal.js - looks like the older brother of,
MSAL.js - which after making it work locally with Azure AD I learned on this page that "At this time, AAD V2 (including MSAL) is not supported for Azure App Services and Azure Functions. Please check back for updates." I couldn't make it work on Azure today so maybe this Note is for a good reason.
EDIT: Interestingly now point 3 works for me on Azure App Service so I'm not sure what this note means.
My requirements so far are that no screen is accessible to users unless they log in and that I will be able to read information about them from Azure AD - Roles, groups.
I never worked with Angular and I don't have any experience with Azure AD and I need someone that implemented it already to at least tell me which option I should choose and I can go from there.
My requirements so far are that no screen is accessible to users unless they log in and that I will be able to read information about them from Azure AD - Roles, groups.
I think the option 1 could meet your requirement, the configuration of Azure AD in Authentication / Authorization is higher than your code, the user could not access the app unless they log in.
To read the information about the roles, groups, you could check this good blog.
Here you have an angular E2E auth scenario using App Service built in authentication:
https://learn.microsoft.com/en-us/azure/app-service/app-service-web-tutorial-auth-aad
I believe the part you are interested in is this one:
Enable authentication and authorization for front-end app
This way app service is the one redirecting you to AAD and getting a valid token that you can just pass in to your APIs afterwards. If the APIs are hosted in App Service as well, then APP service will be the one validating the token for you, so your backend code does not need to worry about authentication (you still need to handle authorization)

Azure AD Apps: Migrating to v2.0

This is my scenario: Client Windows Forms app authenticates with Azure AD and uses the access token to access several web api services. Until now, I was using the endpoint 1 and using the Azure portal to register both apps. It seems like there's a new way now, but I'm a little lost here.
For starters, it seems like both apps (client and server) can be registered in the same app in the new apps portal (https://apps.dev.microsoft.com). I do see a place to add platforms and I have added entries for the native and web api. But where do I go from here? For instance, in the azure portal, I must configure the client app in order for it to call the web api services. How do I that here?
Is there a complete sample for this scenario like the one we have to ADAL (https://learn.microsoft.com/en-us/azure/active-directory/develop/active-directory-code-samples#native-application-to-web-api)?
Thanks,
Regards,
Luis
Please firstly refer to this document to know what's different about the v2.0 endpoint .When you build applications that integrate with Azure Active Directory, you need to decide whether the v2.0 endpoint and authentication protocols meet your needs. Please see the limitations of azure ad v2.0, such as you can use the v2.0 endpoint to build a Web API that is secured with OAuth 2.0. However, that Web API can receive tokens only from an application that has the same Application ID .
The v2.0 endpoint does not support SAML or WS-Federation; it only supports Open ID Connect and OAuth 2.0 ,To better understand the scope of protocol functionality supported in the v2.0 endpoint, read through OpenID Connect and OAuth 2.0 protocol reference.
You could refer to document how to call a web API from a .NET web app with Azure AD V2.0 (using MSAL to acquire and use access tokens), and here is the code sample on Github . The document includes how to add basic sign-in to a web app or how to properly secure a web API in azure ad v2.0 .

Struts 1.3 + Saml Okta SSO Integration

We want our (struts 1.3) application to integrate with SAML through Okta SSO. I searched in Google but not seen any example. Please Advise me on "(struts 1.3) application to integrate with SAML through Okta SSO" and give some sample codes.
Thanks in Advance...
Okta has a relevant guide for integrating Spring Security SAML here: http://developer.okta.com/docs/guides/spring_security_saml.html
Spring also has some documentation on the topic: http://docs.spring.io/autorepo/docs/spring-security-saml/1.0.x-SNAPSHOT/reference/html/chapter-idp-guide.html#d5e1816
One way to approach this is to do an integration your Struts 1.3 app with Spring Security first. I have not done this integration myself - but there seems to be a few threads on this subject - if you search for "struts spring security"
How to integrate an old Struts application with Spring 3.x
https://spring3mvc.wordpress.com/2012/06/25/spring-security-with-struts-1-3/
http://classfoundexception.blogspot.com/2012/04/how-to-secure-struts-13-application.html
Afterwards, follow the guidance here - http://developer.okta.com/docs/guides/spring_security_saml.html - to SAML-enable your app. You will then configure an app instance in Okta to make Okta as the IDP of your application. I don't have anything more detailed than this as I haven't tried this myself - but hopefully, this will lead you down the right path.

Resources