SAML Service Provider Configuration

The Token Server can act as a SAML Service Provider during the authentication of a user, for this reason the Token Server exposes metadata. The SAML metadata exposed by the Token Server at the metadata URL. This section describes how to adapt the values used in the metadata for this Service Provider.

In order to configure SAML Service provider usage, go to the Configuration section of the administration console, then System and choose the SAML Service provider tab.

The picture below shows the SAML Service provider view in the Admin Console with an example configuration.

SAML Service Provider Configuration

Configure location of the SAML velocity log file

In order to configure location of the SAML velocity log file set the following field:

Field name Default value Description
Velocity log location /tmp/velocity.log Location on the file system where the velocity log file generated by the SAML module will be stored.

Note: Applying this value change requires a restart of the Token Server Engine Application.

Configure Metadata of the SAML Service Provider

In order to configure Metadata for the SAML Service Provider configure the following fields:

Field name Default value Description
SAML Service Provider enabled true Indicates if SAML endpoints on the Token Server are enabled. Without enabling these endpoints the samlUserAuthenticator can not be used.
Entity ID oneginiTokenServerEn​tityId​ Entity identifier of the SAML Service Provider.
Unique Entity ID per Client false When enabled, an identifier will be appended to the previously defined 'entityId' on a per mobile app/web client basis. The metadata endpoint changes to include the identifier.
ID oneginiTokenServer Identifier of the SAML Service Provider.
Validity 1 Indicates the validity of the SAML metadata of the Service Provider in days.
Language en Language code used in the descriptions etc in the SAML Service Provider metadata.
Organisation name Onegini Name of the organisation used in the SAML Service Provider metadata.
Support contact name Support Name of the support contact person used in the SAML Service Provider metadata.
Support contact email [email protected] The e-mail address belonging to the contact person in the SAML Service Provider metadata.

Metadata URL

Metadata URL Unique Entity ID per Client enabled
/oauth/saml/metadata false (default)
/oauth/saml/{identifier}/metadata true

By default the URL is /oauth/saml/metadata. If Unique Entity ID per Client is enabled, the aforementioned URL will not work. It needs to include an additional identifier. For mobile applications, it is the application identifier. For web clients, it is the Client ID. Here is the defined URL for an application with the identifier oneginiExampleApp: /oauth/saml/oneginiExampleApp/metadata.

The generated metadata XML will include the entityId, a dash, and the client identifier. So if the base EntityID is defined as exampleEntityId and you are looking at the SAML metadata for an application with an identifier oneginiExampleApp, the combined entityId in the XML will be exampleEntityId-oneginiExampleApp.

<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" ID="someId" entityID="exampleEntityId-oneginiExampleApp" validUntil="2018-05-11T13:27:07.028Z">
...
</md:EntityDescriptor>

Configure SAML requests signing

In order to configure SAML requests signing set the following fields:

Field name Required Default value Description
Private key yes empty The private key used by the SAML Service Provider to sign requests.
Certificate yes empty The public key / certificate of the SAML Service Provider which can be used by the IDP to validate the signature.
Keystore password yes empty Password used to encrypt the SAML Service Provider key store.

Confgure SLO (Single logout) feature

The goal of the SLO feature is to logout user from a web client when their SAML session is terminated by the SAML Identity Provider. In order to configure using SLO configure the following fields:

Field name Default value Description
Enabled false Indicates if Single Logout feature is enabled. When enabled, SAML IdP can be configured to be able to terminate sessions at the Token Server.
Cache TTL 3600 The time to live after which the SAML session will be terminated and the all session belongings (access tokens and access grants) will be revoked.

Note: Applying SLO cache TTL value change requires Token Server Engine Application to be restarted.