This is the solution:
url = new JMXServiceURL("service:jmx:rmi://localhost:23791/oc4j/MyApp");
Hashtable env = new Hashtable();
Hashtable credentials = new Hashtable();
credentials.put("login",...
Type: Posts; User: germanbalbastro; Keyword(s):
This is the solution:
url = new JMXServiceURL("service:jmx:rmi://localhost:23791/oc4j/MyApp");
Hashtable env = new Hashtable();
Hashtable credentials = new Hashtable();
credentials.put("login",...
I have an application deployed in the OC4J 10.1.3 and its starts a JMX server using Spring 1.2.7 and publish a class. The application-context xml file is:
<!-- start a JMX Server -->
<bean...