Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-7133494

[macosx] JMX: java.rmi.ConnectIOException: non-JRMP server at remote endpoint

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 7u4
    • core-libs
    • x86
    • os_x

      From http://java.net/jira/browse/MACOSX_PORT-393 --

      Server.java:
      import javax.management.*;
      import javax.management.remote.*;
      import java.rmi.registry.LocateRegistry;
      import java.util.Collections;

      public class Server {
      public static void main(String[] args) throws Exception { LocateRegistry.createRegistry(7000); JMXServiceURL jmxSrvUrl = new JMXServiceURL("service:jmx:rmi://localhost/jndi/rmi://localhost:7000/jmxrmi"); MBeanServer mbServer = MBeanServerFactory.newMBeanServer(); JMXConnectorServerMBean jmxServer = JMXConnectorServerFactory.newJMXConnectorServer(jmxSrvUrl, Collections.EMPTY_MAP, mbServer); jmxServer.start(); }
      }

      Client.java:
      import javax.management.remote.*;
      import java.util.Collections;

      public class Client {
      public static void main(String[] args) throws Exception { JMXServiceURL jmxSrvUrl = new JMXServiceURL("service:jmx:rmi://localhost/jndi/rmi://localhost:2000/jmxrmi"); JMXConnector jmxConnector = JMXConnectorFactory.newJMXConnector(jmxSrvUrl, Collections.EMPTY_MAP); jmxConnector.connect(); jmxConnector.close(); }
      }

      How to reproduce:
      $ .../bin/java -Drmiregistry.port=7000 -Dcom.sun.management.jmxremote.port=2000 -Dcom.sun.managemenemote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false Server &
      $ .../bin/java Client

            chegar Chris Hegarty
            juh Jason Uh (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: