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

JMXServiceURL swallows part of the URL path.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 5.0
    • core-svc

      The following testcase generates the output:

      service:jmx:rmi://jndi/rmi://myhost:9999/jmxri
      /rmi://myhost:9999/jmxri << the /jndi part has been swallowed
      service:jmx:rmi:///jndi/rmi://myhost:9999/jmxri

      I also believe that "service:jmx:rmi://jndi/rmi://myhost:9999/jmxri"
      is incorrect (missing a third / in rmi://jndi.

      ----------------------------------------------------
      import javax.management.remote.*;

      public class url {
          public static void main(String args[]) {
      try {
      System.out.println(new JMXServiceURL("service:jmx:rmi://jndi/rmi://myhost:9999/jmxri").toString());
      System.out.println(new JMXServiceURL("service:jmx:rmi://jndi/rmi://myhost:9999/jmxri").getURLPath());
      System.out.println(new JMXServiceURL("rmi","",0,"/jndi/rmi://myhost:9999/jmxri").toString());
      } catch (Exception x) {
      x.printStackTrace();
      System.exit(1);
      }
          }
      }

            Unassigned Unassigned
            dfuchs Daniel Fuchs
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: