Software AG Infrastructure 10.7 | Setting Up Security | Predefined Login Modules | SAMLAssertValidatorLoginModule
 
SAMLAssertValidatorLoginModule
Important:
You can use this module only as preconfigured by Software AG.
Use SAMLAssertValidatorLoginModule to validate the delegation ticket issued from SAMLAssertIssuerLoginModule. You can use it for both SAML 1.1 and SAML 2 assertion validation.
The following sample outlines SAMLAssertValidatorLoginModule and the corresponding configuration included in a login context of a JAAS configuration file. The following login context is in the default jaas.config file that comes with Software AG Runtime.
/** Login context used in Common Platform for a default authentication **/
Default {
// SSOS login module for SAML signed assertion validation
com.softwareag.security.idp.saml.lm.SAMLAssertValidatorLoginModule sufficient;
// Internal repository login module (java based)
com.softwareag.security.jaas.login.internal.InternalLoginModule required
template_section=INTERNAL
logCallback=true
internalRepository="C:/softwareag/common/conf/users.txt"
create_group_principal=true
groupRepositoryPath="C:/softwareag/common/conf/groups.txt";};