Configuration

You can make the following settings in the web.config file.

You can find this file in the installation directory, and elements not listed here must not be changed:

<connectionStrings>
    <add name="..."
    connectionString="..."
    providerName="System.Data.SqlClient" />
</connectionStrings>

Contains the connection string for the Microsoft SQL Server. The following information must be set at minimum:

Data SourceThe data source, i.e. the server including the service instance
Initial CatalogThe database to be used
Integrated Security
or
Trusted_Connection
or
User ID / Password
For the connection, use Active Directory
or
Active Directory
or
username (uid also possible) and password

Examples:

Data Source=.\SQLEXPRESS;Initial Catalog=QM_DB;uid=user;Password=password;
Data Source=.\SQLEXPRESS;Initial Catalog=QM_DB;Trusted_Connection=yes;
Data Source=.\SQLEXPRESS;Initial Catalog=QM_DB;Integrated Security=SSPI;
<add key="DBcheck" value="false" />

The value of value can be true or false. Default: false

If true, it is checked at the first application start whether a database connection exists and can be used. Otherwise, a database connection wizard is activated.

<add key="NTSM" value="false" />

The value of value can be true or false. Default: false

If true, Active Directory is used for login, and SSO (Single Sign On) is activated. To do this, the Microsoft Active Directory user must be entered in the user management under username and login name. Windows authentication must also be enabled in Internet Explorer (via GPO or manually on each PC):

<add key="DBinit" value="false" />

The value of value can be true or false. Default: false

If true, it is checked at the first application start whether a database connection exists and can be used. Otherwise, a database connection wizard is activated.