Hi,
I need to get the name of the JVM that's running my application code (I can get the server name, but we may be running multiple JVMs on a server so I need the JVM name too), I'm running WebSphere v6.0. I have a partial solution, but this doesn't work from a Tag. If I insert
<% System.out.println("am.appserver = " + System.getProperty("am.appserver")); %>
in a JSP it works fine and outputs 'server1', but running the same code in a Tag outputs
null
.
Can anyone suggest how I can get the JVM name, or alternatively tell me how to fix the above?
TIA, Steve.