Update certificate information for Smart Completions authentication server - Intergraph Smart Completions - Intergraph Smart Completions Update 24 - Installation & Upgrade

Intergraph Smart Completions Installation

Language
English
Product
Intergraph Smart Completions
Search by Category
Installation & Upgrade
Smart Completions Version
5.3.24

Obtain the certificate thumbprint value using IIS Manager

You need to have Internet Information Services (IIS) Manager installed in your system.

  1. Open IIS Manager > Server Certificates.

  2. Select Create Self-Signed Certificate from the Actions menu.

  3. Type the name for the certificate, and select OK.

  4. Right-click on the created certificate, select Properties.

  5. Go to Details tab, and scroll down until you find Thumbprint field.

  6. Copy the Value of Thumbprint and paste it in your On-premise installation setup.

Update Certificate information

If you are using the Smart Completions authentication server as your identity server, you must add the certificate information to configuration files.

Update appsettings.json

  1. Open the appsettings.json file.

  2. In the SCAuth section, update the Issuer and storeThumbprint properties with the information for your signed certificate. For example:

    "SCAuth": {

    "Issuer": "https://<BASE_URL>/api/Authentication.asmx",

    "storeThumbprint": "<SELF-SIGNED-CERT_THUMBPRINT-VALUE>"

    }

Update web.config at application root

  1. Open the web.config file in the application's <root-directory> directory.

  2. Add the appSettings properties, as follows:

    <appSettings>

    <add key="SCAuth:storeThumbprint" value="<SELF-SIGNED-CERT_THUMBPRINT-VALUE>"/>

    </appSettings>

Update web.config at API root

  1. Open the web.config file in the application's <root-directory>/API folder.

  2. Add the appSettings properties, as follows:.

    <appSettings>

    <add key="SCAuth:storeThumbprint" value="<SELF-SIGNED-CERT_THUMBPRINT-VALUE>"/>

    </appSettings>