Calls the JavaUserShutdown method of the Java class that implements the behavior of the virtual user. This function must be called in the shutdown transaction of your test script.
Java.bdh
JavaUserShutdown(): boolean;
true if successful
false otherwise
dcltrans transaction TInit begin JavaSetOption(JAVA_VERSION, JAVA_V11); JavaSetOption(JAVA_HOME, "c:/jdk1.1.7"); JavaSetOption(JAVA_CLASSPATH, "c:/myApplication/classes;c:/myTools/tools.zip"); JavaCreateJavaVM(); JavaUserInit("SilkPerformerUser"); end TInit; transaction TRun begin JavaUserRun(); end TRun; transaction TMyTransaction begin JavaUserMethod("MyMethod"); end TMyTransaction; transaction TShutdown begin JavaUserShutdown(); end TShutdown;