You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates an instance to connect to aURL (e.g. service:jmx:rmi:///jndi/rmi://127.0.0.1:12345/jmxrmi). If needed aLogin and aPassword can be provided. aProvider can also be specified to access custom MX bean classes (e.g. WebLogic application servers).
Example:
var jmx = new JMX("service:jmx:rmi:///jndi/rmi://127.0.0.1:12345/jmxrmi");
JMX.attach2Local
JMX.attach2Local(aId) : Object
Establishes a connection with a local Java process given the aId provided by JMX.getLocals() returning an URL to establish a JMX connection, a list of System environment variables and a Agent describing the Java Management Agent activated on the local Java process.
JMX.getLocals
JMX.getLocals() : Object
Returns a Locals map with an id and name of each Java process detected locally. To be used with JMX.attach2Local().
JMX.getObject
JMX.getObject(aObjName) : Object
Obtains a bean aObject (e.g. aObjName = "com.openaf:type=Values").
Example: