Configure Server

The Tosca Interactive Testing Server is installed and configured by using the Tricentis Tosca Server (see chapter "Install Tosca Server via setup dialog").

Configurations can be manually adjusted and extended via the appsettings.json file in the InteractiveTestingStandalone directory.

Files and paths to be configured

appsettings.json

Path to your server directory

Default path: C:\Program Files (x86)\TRICENTIS\Tosca Server\InteractiveTestingStandalone

The Tricentis Tosca Server must be restarted via the IIS Manager each time the appsettings.json file is changed.

Tricentis recommends defining a time frame for the restart since all newly installed features are restarted as well.

Define a directory for the data

The Interactive Testing Server saves all session data to a directory.

In the ConnectionString section of the appsettings.json file, enter the path to the required directory.

The following sample configuration saves data to the directory C:\Program Files(x86)\TRICENTIS\ToscaServer\InteractiveTestingStandalone:

{
 "Logging": {
   "IncludeScopes": false,
   "Debug": {
     "LogLevel": {
        "Default": "Warning"
 }
},
"Console": {
  "LogLevel": {
     "Default": "Warning"
  }
 }
},
"App": {
"ConnectionString": "C:\\ProgramData\\TRICENTIS\\ToscaServer\\InteractiveTesting\\server.db",
"SetupDirectory": "C:\\Program Files (x86)\\TRICENTIS\\Tosca Server\\InteractiveTestingStandalone\\download"
}
}