This error is encountered because white space exists in the declared/configured java command line option (either in the script or in workbench settings): Example - In Script: //This will result in error due to the spacing between "jdk" and "1.5.0". JavaSetOption(JAVA_CMDLINE_OPTIONS, "-Djava.library.path=\"C:\\jdk 1.5\""); //This will be fine JavaSetOption(JAVA_CMDLINE_OPTIONS, "-Djava.library.path=\"C:\\jdk1.5\""); Example - In Workbench: After editing the "Command line option" field in SilkPerformer workbench via Settings | Active Profile | Replay | Java | Advanced tab ... E.g with the entry: -Djava.library.path="C:\Java\jdk1.5.0_01;C:\Java\test path" When clicked on the "Check JVM" button. An error will occur. This will be fixed in a future release. A temporary measure is to ensure no white space needs to exist in the declaration.
↧