Whitelisting a Domain in Core Assembly Service

You only need to follow these steps if you:

  • Are upgrading Core Assembly Service from an existing installation that already has the whitelist specified
  • You accidentally omitted whitelisted domains during a new installation of Core Assembly Service

The following steps enable you to manually whitelist a domain for use by the HotDocs Core Assembly Service.

To whitelist a domain

  1. Open Windows Explorer.
  2. Navigate to the Core Assembly Service installation folder; by default, this is C:\inetpub\wwwroot\HotDocs Core.
  3. Edit the web.config file in a text editor.
  4. At the bottom of the configuration section of the web.config file, add an alloweddomain section as follows:

    <alloweddomains>
        <domains>
            <add domain="*.{domain}"/>
        </domains>
    </alloweddomains>

  5. Replace {domain} in the example above with the domain you want to whitelist; for example, yourorganization.com.
  6. Save your changes.