Atozed Forums

Full Version: SAML
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How can I implement  SAML authentication with Microsoft Entra ID with Intraweb application, ASPX deployment under IIS? Is there any sample or working project already?
Thanks for any advice.
SAML would POST to you with a token in the body, which is all already there and accessible in IW.

But then processing SAML token is rather involved. IW has nothing for it. And there's really nothing free you can use. Plus whatever you would find, there will be a very steep learning curve to overcome, so expect to spend a lot of time on it.
Any SAML library available for Delphi should be able to work with IntraWeb

In IntraWeb you can create an endpoint with Content handlers that will receive the SAML assertion (XML). The SAML library should be capable of processing this response (extract and validate it).

After a quick google search, I found this: https://github.com/EtheaDev/Delphi-SAML
(never used it, looks good), but it's a start.
Wow, that's new. And a bit complicated in terms of underlying frameworks, requirements and licensing. But kudos to Luca, it was a huge undertaking...