I'm looking to remotely determine the version of Java that a particular process is running on through JMX. Specifically, I would like something like "1.6.0_26", which is what System.getProperty("java.version") would return.
Through the RunTime MBean, I can check the VmName and VmVersion attributes, which give "Java HotSpot(TM) 64-Bit Server VM" and "20.1-b02", respectively. I'm not sure where the "20.1-b02" comes from; is there a way to match that to the "1.6.0_26" version?