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

GenericConnector does not handle correctly the map passed to its constructor

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.0.1
    • 1.0
    • core-svc
    • None
    • 1.0.1
    • generic
    • generic

        My test:

        // create a connector server with a correct map parameter map1
        connectorServer = new GenericConnectorServer(map1, mbs);

        // create a connector with a correct map parameter map2
        connector = new GenericConnector(map2);

        // connect the connector with an erroneous map parameter map3
        // expected IOException
        try {
          connector.connect(map3);
        }
        catch (IOException e) {
          ref.println("(OK) Expected IOException raised");
        }

        // connect again without map parameter
        connector.connect();

        Here i expect the connector to use the default map passed
        to it constructor.
        Instead, it seems that the first connect call overrides the map parameter
        definitively (and not only for the connect call).

        It is not clear in the javadoc what is the expected behavior in this case.
        But the JMXMP implementation (which redefines the connect method)
        has the "expected", well, let's say the "more natural" behavior.

        Also, note that my implementation does not redefine the connect method.

        TCK test :
        api/javax/management/remote/generic/GenericConnector/index.html#GenericConnectorTest
        Test case : ConnectorConnect009

        ###@###.### 2003-10-07

              sjiang Shanliang Jiang (Inactive)
              slions Sandra Lions-piron
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: