FIS start script – class path configuration and run parameters

The start script for invoking FIS commands (FIS.bat or FIS.sh) has been designed to work properly if the application jar file is located in the same directory as the script. The following snippet exemplifies the Java call that is used to start a FIS operation:

java -Dfile.encoding=UTF-8 -cp "./*" com.tsystems.ima.fis.console.FISMain <params>

Within the start script you can also set the parameter “-Dima.license.directory”, which specifies the location of the license file. If this parameter is set in the java call of the FIS start script, it overrides the parameter set in FIS.cfg (License directory in FIS.cfg).

Further JVM parameters can be set according to the following chapter JVM parameters in FIS start script, e.g.:

java -Dhttp.maxConnections=100 -Dfile.encoding=UTF-8 -cp "./*" com.tsystems.ima.fis.console.FISMain <params>