Is it possible to pass the version of java that a client is running to the server so that it shows up in the client section on the server webpage?
In troubleshooting problems, it would be a big help to see if the client’s machine is running java 1.4 or java 1.5. I have found some performance issues that I associate with old versions of java running on client machines.
var javaVersion = Packages.java.lang.System.getProperty("java.version");
var javaVendor = Packages.java.lang.System.getProperty("java.vendor");
application.output("java version = " + javaVersion +
" from " + javaVendor);
This approach can be applied to get other System properties as well …including properties such as :
os.name Operating system name
os.arch Operating system architecture
os.version Operating system version