Hi,
I managed to build a war with jminix and run it on Weblogic Server. It works, but only with the JDK MBean Server. But the jminix GUI is really cool.
I'd like to connect the war to Weblogics MBeanServer.
I understand that you can give a serverConnectionProvider init parameter to the servlet. But how can you specify parameters to this serverConnectionProvider, especially the JMXServiceURL? I'd prefer not to need Spring.
The way to connect to Weblogics MBeanServer with JConsole is given here:
https://blogs.oracle.com/WebLogicServer/entry/sample_weblogic_jmx_clientBasically you have to set -Djmx.remote.protocol.provider.pkgs=weblogic.management.remote
use wljmxclient.jar and set this URL:
service:jmx:iiop://
127.0.0.1:7001/jndi/weblogic.management.mbeanservers.runtimeBut how do you configure this with jminix?
Thx,
Juergen