SAML SSO with ADFS - Using Windows Integrated Authentication (WIA)

CMS Version

Version 3.2.1

Installation Method

Docker

Operating System

Linux

Issue

I have successfully integrated the xibo with ADFS SSO, however it requires that “Form Based Authentication” is enabled on the ADFS server.

Is it possible to configure Xibo to support WIA?

Error message from ADFS:

Error message from xibo (when Form Authentication is not enabled):

The same service does not have an issue authenticating users logging into Canva.

Hi, welcome to the Community!

Try adding the following inside the security array inside $advancedSettings in settings-custom.php/settings.php

'requestedAuthnContext' => false,

So you would have something like this, but with the values you want to set:

‘security’ => array (
‘nameIdEncrypted’ => false,
‘authnRequestsSigned’ => false,
‘logoutRequestSigned’ => false,
‘logoutResponseSigned’ => false,
‘requestedAuthnContext’ => false,
‘signMetadata’ => false,
‘wantMessagesSigned’ => false,
‘wantAssertionsSigned’ => false,
‘wantAssertionsEncrypted’ => false,
‘wantNameIdEncrypted’ => false,
‘signatureAlgorithm’ => ‘xmldsig-more namespace’,
‘digestAlgorithm’ => ‘XML Encryption Syntax and Processing’,
),

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.