After adding the certificate, you need to make changes to the Web.config configuration file, located in the root directory of the bpm'online 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 bpm’online 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 bpm'online website. If all is done right, then in the address bar you will see "https://" before the web address of the application.
Next