To configure a Content Composer Server installation to use
Hyland IdP authentication, complete the following steps:
- From the %Composerdir% directory, open the Composer.Core.exe.config file with a text editor that supports UTF-8.
-
Find the <configSections> element and verify that the following line exists within the element.
<configSections> ... <section name="userRepository_Idp" type="ModusSuite.Common.SystemFramework.OAuth.IdpConfiguration, ModusSuite.Common.SystemFramework"/> ... </configSections>
-
Find the line beginning with <userRepository_Ldap configSource and verify that the following line exists below this line.
<userRepository_Idp configSource="UserRepository_Idp.config" />
-
Find the <behavior name="STSBehaviour"> element and add or uncomment the <serviceCredentials> element within the behavior element.
Example
<behavior name="STSBehaviour"> ... <serviceCredentials> <userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="ModusSuite.Runtime.STS.IdpUserNamePasswordValidator, ModusSuite.Runtime.STSRuntimeService" /> </serviceCredentials> ... </behavior>
- Save and close the file.
- From the %Composerdir% directory, open the UserRepository.config file with a text editor that supports UTF-8.
-
Set the value of the userStore attribute to Idp.
Example
<userRepository systemOId="cc" roleMapper="Std_Mapping" userProfile="Std_Profil" profileReadOption="None" userStore="Idp" />
- Save and close the file.
- To activate the configuration changes, in Windows Services, restart the Composer.Core service.
- From the %Composerdir% directory, open the Composer.MWS.exe.config file with a text editor that supports UTF-8.
-
Find the <configSections> element and verify that the following line exists within the element.
<configSections> ... <section name="userRepository_Idp" type="ModusSuite.Common.SystemFramework.OAuth.IdpConfiguration, ModusSuite.Common.SystemFramework"/> ... </configSections>
-
Find the line beginning with <userRepository_Ldap configSource and verify that the following line exists below this line.
<userRepository_Idp configSource="UserRepository_Idp.config" />
- Save and close the file.
- To activate the configuration changes, in Windows Services, restart the Composer.MWS service.