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

Intergraph Smart Completions Installation (5.3.19)

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

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>