Examples
Some examples of preferences that each provide some commonly used functionality. They can be combined with each other or with other settings to provide functionality in AVIX be being added in the preference file.
EXAMPLE 1:
Provide default license server settings when floating licenses are used. In this case the users use a floating licenses from a license server named “floatinglicenseserver”.
[se.solme.avix.licensing]
avix.licensing.licenseType=Floating
avix.licensing.floatingServerName=floatinglicenseserver
EXAMPLE 2:
Force no proxy to be used. This can help avoid some network related problems that can occur when floating licenses are used. It does however require that your clients are able to connect to your license server without using a proxy which usually is the case.
[se.solme.net]
avix.proxySettingsSource=File
http.proxySet=false
EXAMPLE 3:
Activate automatic update and installation of the application and addons during startup so customizations and application versions can be handled from a central place. In this case the central folder is located at “Z:/AVIX/ActiveUpdateSites”.
[se.solme.avix.p2]
avix.update.updatesiterootfolders=Z:/avix/ActiveUpdateSites
avix.update.clearexistingupdatesitesonstartup=true
avix.update.updateonstartup=true
avix.update.installonstartup=true
Note that the backslash character need to be escaped with \.
So
Z:\avix
has to be written as
Z:\\avix
Therefore we recommend using / instead, as it will be more readable.
\\192.168.1.2\avix
can be written as
\\\\192.168.1.2\\avix
or as
//192.168.1.2/avix