Uploaded image for project: 'ActiveMQ Classic'
  1. ActiveMQ Classic
  2. AMQ-3359

UDP Transport connector listens on a random port number

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Cannot Reproduce
    • 5.4.0, 5.4.1, 5.4.2, 5.5.0
    • None
    • Broker
    • Patch Available

    Description

      The broker listens on a random UDP port number instead of the one configure in the URI. The port number changes each time the broker is restarted. However, the management console indicates that the broker's listening on the configured port number while it is not the case (netstat shows another UDP port number). The reason is that (as seen in the following block) the UdpTransport constructor does not assign "this.port" from remoteLocation but only reads the address and leaves "this.port" to be zero. Subsequently, Java API picks any available port number when it is creating the DatagraSocket. The solution is to add this line: "this.port = remoteLocation.getPort();" to the following constructor as seen in the accompanying patch.

      public UdpTransport(OpenWireFormat wireFormat, URI remoteLocation) throws UnknownHostException, IOException {
      this(wireFormat);
      this.targetAddress = createAddress(remoteLocation);
      description = remoteLocation.toString() + "@";
      }

      Attachments

        1. AMQ-3359.patch
          2 kB
          Christian Posta
        2. AMQ-3359.patch
          0.7 kB
          Amir Malekpour
        3. UpdTransportBindTest.java
          2 kB
          Christian Posta

        Activity

          People

            Unassigned Unassigned
            amir.malekpour Amir Malekpour
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - 5m
                5m
                Remaining:
                Remaining Estimate - 5m
                5m
                Logged:
                Time Spent - Not Specified
                Not Specified