Financial Services Creatio, lending edition
PDF
This documentation is valid for Creatio version 7.15.0. We recommend using the newest version of Creatio documentation.

Web.config setup

After adding the certificate, you need to make changes to the Web.config configuration file, located in the root directory of the Creatio website.

1.At the end of the file, find:

<behaviors configSource="Terrasoft.WebApp\ServiceModel\http\behaviors.config" />
<bindings configSource="Terrasoft.WebApp\ServiceModel\http\bindings.config" />

2.Change paths from “http” to “https”:

<behaviors configSource="Terrasoft.WebApp\ServiceModel\https\behaviors.config" />
<bindings configSource="Terrasoft.WebApp\ServiceModel\https\bindings.config" />

Edit the Web.config file located in the [Path to the root website directory]\Terrasoft.WebApp\ directory.

1.Set the variable value to encrypted="true". The configuration differs depending on the operating system of the server with Creatio application.

For Windows Server 2012 and higher, the configuration string should look as follows:

<wsService
type="Terrasoft.Messaging.MicrosoftWSService.MicrosoftWSService,
Terrasoft.Messaging.MicrosoftWSService" encrypted="true"
portForClientConnection="443" maxConnectionNumber="100"
clearIdleSession="false" clearIdleSessionInterval="120" />

2.At the end of the file, find:

<services configSource="ServiceModel\http\services.config" />

3.Change the path from “http” to “https”:

<services configSource="ServiceModel\https\services.config" />

Save the configuration files.

Restart the application in the IIS and then go to your Creatio website. If all is done right, then in the address bar you will see "https://" before the web address of the application.

See also

Setting up additional parameters and integrations

Creatio setup FAQ

Did you find this information useful?

How can we improve it?