-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
1.1.3.Final
-
None
XNIO options are not passed down when specified in the environment, preventing the client from specifying things such as SSL_ENABLED=false
JMXServiceURL jmxUrl = new JMXServiceURL(url); Hashtable env = new Hashtable(); env.put("org.xnio.Options.SSL_ENABLED","false"); String[] credentials = new String[] { user, pass }; env.put(JMXConnector.CREDENTIALS, credentials); this.jmxConnector = JMXConnectorFactory.connect(jmxUrl, env);