Customizing the Server Configuration - Advanced Design and Setup - Foundation 23.2 - Foundation 23.2 - Ready - Content Composer - external

Content Composer Advanced Design and Setup

Platform
Content Composer
Product
Advanced Design and Setup
Release
Foundation 23.2
License
To customize the Content Composer Server to use the new certificates, complete the following steps:
  1. On the Content Composer Server, from the %Composerdir% directory, copy all CONFIG files to a backup directory.
  2. Complete the following substeps for the following files:
    • Composer.Core.exe.config
    • Composer.MWS.exe.config
    • Composer.OWS.exe.config
    • Composer.XWS.exe.config
    • Composer.WCF.Console.exe.config
    1. From the %Composerdir% directory, open the CONFIG file with a text editor that supports UTF-8.
    2. Search for the following line:
      <add storeLocation="LocalMachine" storeName="TrustedPeople" x509FindType="FindBySubjectDistinguishedName" findValue="CN=composer.server" />
    3. Change composer.server to composer.servernew.
      <add storeLocation="LocalMachine" storeName="TrustedPeople" x509FindType="FindBySubjectDistinguishedName" findValue="CN=composer.servernew" />
    4. Search for the following line:
      <serviceCertificate storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectDistinguishedName" findValue="CN=composer.service" />
    5. Change composer.service to composer.servicenew.
      <add storeLocation="LocalMachine" storeName="TrustedPeople" x509FindType="FindBySubjectDistinguishedName" findValue="CN=composer.servicenew" />
    6. Save and close the file.
  3. Complete the following substeps for the following files:
    • Composer.Core.exe.config
    • Composer.MWS.exe.config
    • Composer.OWS.exe.config
    • Composer.XWS.exe.config
    • Composer.WCF.Console.exe.config
    • Composer.WindowsServiceHost.exe.config
    • All custom Content Composer service configuration files
    1. From the %Composerdir% directory, open the CONFIG file with a text editor that supports UTF-8.
    2. Insert the following lines within the <appsettings> element:
      <add key="certStsSubjectName" value="composer.servernew" />
      <add key="certServiceSubjectName" value="composer.servicenew" />
    3. Save and close the file.