Initializes and starts the Java Virtual Machine. Silk Performer requires the JVM from Sun Microsystems and the Jolt packages from BEA Systems.
Jolt.bdh
JoltInit( in nVersion : number optional ): boolean;
true if successful
false otherwise
Parameter | Description |
---|---|
nVersion |
Version number of the Java Virtual Machine (optional). This parameter can be one of the following:
By default, the VM version, specified by the profile settings, is used. Note: The JavaSetOption function overrides
the profile setting.
|
dcltrans transaction TInit begin JavaSetOption(JAVA_VERSION, JAVA_V11); JavaSetOption(JAVA_HOME, "c:/jdk1.1.7"); JavaSetOption(JAVA_CLASSPATH, "c:/jdk1.1.7"); JoltInit(); end TInit;