VCF Automation Blog

from Stefan Schnell

VCF Automation uses the JavaScript engine Rhino, this becomes visible in the section Scripting Engine of the current key features of the Orchestrator platform.

Detect the Rhino JavaScript Engine Version


Here the JavaScript code to detect the Rhino engine version. It is necessary to grant access to the package org.mozilla.javascript.

var context = new org.mozilla.javascript.Context();
var currentContext = context.getCurrentContext();
var rhinoVersion = currentContext.getImplementationVersion();
System.log(rhinoVersion);

get version of the rhino engine
You can find here the documentation of the Rhino classes.