Configuring a Content Composer Server Installation to Use Hyland IdP - Installation - Foundation 23.2 - Foundation 23.2 - Ready - Content Composer - external

Content Composer Installation

Platform
Content Composer
Product
Installation
Release
Foundation 23.2
License
To configure a Content Composer Server installation to use Hyland IdP authentication, complete the following steps:
  1. From the %Composerdir% directory, open the Composer.Core.exe.config file with a text editor that supports UTF-8.
  2. 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>
  3. Find the line beginning with <userRepository_Ldap configSource and verify that the following line exists below this line.
    <userRepository_Idp configSource="UserRepository_Idp.config" />
  4. 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>
  5. Save and close the file.
  6. From the %Composerdir% directory, open the UserRepository.config file with a text editor that supports UTF-8.
  7. Set the value of the userStore attribute to Idp.

    Example

    <userRepository systemOId="cc" roleMapper="Std_Mapping" userProfile="Std_Profil" profileReadOption="None" userStore="Idp" />
  8. Save and close the file.
  9. To activate the configuration changes, in Windows Services, restart the Composer.Core service.
  10. From the %Composerdir% directory, open the Composer.MWS.exe.config file with a text editor that supports UTF-8.
  11. 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>
  12. Find the line beginning with <userRepository_Ldap configSource and verify that the following line exists below this line.
    <userRepository_Idp configSource="UserRepository_Idp.config" />
  13. Save and close the file.
  14. To activate the configuration changes, in Windows Services, restart the Composer.MWS service.