Here you will find complete parameter lists for configuring the eBiss Client.
It is advisable to back up the config files before making more complex changes.
Hinweis: Die Konfigurationseinstellungen können bevorzugt mit dem eBiss Konfigurator eingestellt werden.
This file contains the configuration of the eBiss Server service.
The configuration file is stored in XML format and contains, among other things, reference paths to log files, third-party add-on modules and links to the databases used.
Parameter | Description |
---|---|
PluginManager.ModuleSearchPath | eBiss is able to integrate additional functionality of third-party components in the form of assembly dlls through the PluginManager component. With this parameter, you can specify the path to the dlls.f.e. <add key="PluginManager.ModuleSearchPath" value="./Stim.Bin" />
, Relative path to the assembly dlls of Stim. |
PluginManager.DynamicModuleSearchPaths | This parameter has the same function as PluginManager.ModuleSearchPath, instant of this the dlls whose paths are specified here are referenced dynamically after all standard paths have been loaded. e. g. <add key="PluginManager.DynamicModuleSearchPaths" value="c:/medeas" />
, Relative path to the Medeas assembly dlls. |
PluginManager.DynamicLoadPlugins | This parameter specifies all paths to assembly dlls that are referenced dynamically at application startup, for example. <add key="PluginManager.DynamicLoadPlugins" value="r:/medeas/Medeas.Retail.eBiss.dll" />
, absolute path to the assembly dlls of Medeas company. |
PluginManager.PluginPath | This parameter specifies all paths to assembly dlls that are referenced dynamically at application startup, for example <add key="PluginManager.DynamicLoadPlugins" value="r:/medeas/Medeas.Retail.eBiss.dll" />
, absolute path to the assembly dlls of Medeas company. |
LogMan.LogFileName | Parameters for configuring the log file of the eBiss server service. e. g. <add key="LogMan.LogFileName" value="ServiceLog.Log" />
, Log file with the file name ServiceLog.log. |
eBiss.ConnectionString | Parameters for configuring the eBiss database connection string (link to eBiss database) There eBiss saves the system configuration. e. g. <add key="eBiss.ConnectionString" value="server=.;database=eBiss;uid=eBiss;pwd=eBiss" />
, This connection string references an SQL Server database. |
Retail.ConnectionString | This parameter can be used to set up an additional connection string to a separate database for storing item data. |
eBiss.MessageStorePath | This parameter allows you to define a path for the message store (MessageBox). <add key="eBiss.MessageStorePath" value="./MessageStore" />
, relative path to the MessageStore (Defaultwert, wenn kein abweichender Pfad angegeben ist). |
Loglevel | Description |
---|---|
0 | no notification |
1 | error messages |
2 | Warnings, Information |
4 | more information about the runtime |
8 | Start, quit all procedures |
16 | Deselection |
256 | Start, end of all transactions |
Loglevel | Description |
---|---|
0 | no notification |
1 | error messages |
2 | Warnings, Information |
4 | more information about the runtime |
8 | Start, quit all procedures |
64 | Start, end of all transactions |
128 | DB Connect, disconnect |
512 | Executing SQL commands |
1014 | SQL-Query |
2048 | SQL Delete Query |
4096 | SQL Attachment Query |
8192 | SQL Update Query |
16384 | Values of the Host Variables |
This configuration file differs only slightly from eBiss. Service. exe. config. There are no configuration options for system diagnostics.
The WinClient configuration contains additional parameters for configuring the login to the eBiss system.
Parameter | Beschreibung |
---|---|
<add key="eBiss.Client.AutoUser" value="Admin" />
| Parameters for login. |
<add key="eBiss.Client.AutoPass" value="Password" />
| Password parameters |
<add key="eBiss.Client.AutoLogin" value="yes" />
| Parameters handling the autologin |
<add key="eBiss.Client.AlwaysShowLogin" value="yes" />
| Parameters for displaying the login dialog box |
<add key="eBiss.Client.FakeLocalSession" value="yes" />
| Parameter that allows local login without eBiss server. |
<add key="eBiss.Client.EntryScreenContentDefault" value="NoDashboard" />
| Parameters that enable the shutdown of the dashboard |
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="PluginManager.ModuleSearchPath" value="./Plugins" /> <add key="LogMan.LogFileName" value="ServiceLog.Log" /> <add key="eBiss.ConnectionString" value="Data Source=eBiss_SCLabor.db3;New=False;Compress=True;Version=3;" /> <add key="eBiss.ConnectionAdapter" value="Stim.Eva.Core.Persistence.DbAdapter.SqlLite" /> </appSettings> <system.diagnostics> <switches> </switches> </system.diagnostics> </configuration>
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="eBiss.ConnectionString" value="Data Source=eBiss_SCLabor.db3;New=False;Compress=True;Version=3;" /> <add key="eBiss.Client.CustomApplicationName" value="eBiss Application" /<add key="eBiss.Client.AutoUser" value="Admin" /> <add key="eBiss.Client.AutoPass" value="Password" /<add key="eBiss.Client.AutoLogin" value="yes" /<add key="eBiss.Client.AlwaysShowLogin" value="yes" /> <add key="eBiss.Client.FakeLocalSession" value="yes" /<add key="eBiss.ConnectionAdapter" value="Stim.Eva.Core.Persistence.DbAdapter.SqlLite" /> </appSettings> </configuration>