eBiss 3

Hilfe & Dokumentation

User Tools

Site Tools


en:ueberblick:installation:konfiguration:serviceclientkonfiguration

Service and Client Configuration

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.

eBiss.Service.exe.config

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.ModuleSearchPatheBiss 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.DynamicModuleSearchPathsThis 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.DynamicLoadPluginsThis 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.PluginPathThis 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.LogFileNameParameters 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.ConnectionStringParameters 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.ConnectionStringThis parameter can be used to set up an additional connection string to a separate database for storing item data.
eBiss.MessageStorePathThis 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).

Goma.Main Backend Loglevels

Loglevel Description
0no notification
1error messages
2Warnings, Information
4more information about the runtime
8Start, quit all procedures
16Deselection
256Start, end of all transactions

Goma.DBAdapter.ADO Database Loglevels

Loglevel Description
0no notification
1error messages
2Warnings, Information
4more information about the runtime
8Start, quit all procedures
64Start, end of all transactions
128DB Connect, disconnect
512Executing SQL commands
1014SQL-Query
2048SQL Delete Query
4096SQL Attachment Query
8192SQL Update Query
16384Values of the Host Variables

eBiss.WinClient.exe.config

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

Beispiele

eBiss.Service.exe.config

<?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> 

eBiss.WinClient.exe.config

<?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>
en/ueberblick/installation/konfiguration/serviceclientkonfiguration.txt · Last modified: 2024/02/20 08:15 by 127.0.0.1