jmx.remote.x.request.timeout
Hi,
I'm currently trying to set a timeout when connecting to a server (in JDK 1.5) because the default behavior just takes way too much time
Environment.put(JMXConnector.CREDENTIALS, strPassword);
Environment.put("jmx.remote.x.request.timeout","5");
m_jmxConnection= JMXConnectorFactory.connect(url, Environment);
However, when I tried connecting to a server that is down, the timeout still seems to be taking way too long. Is this parameter not supported then?
Thanks

