Changing the number of the Rational DOORS Web Access broker port

Edit the activemq.xml file in the conf subdirectory of the computer hosting the broker, and then edit the festival.xml file on the computer hosting the Rational® DOORS® Web Access server.

Before you begin

Note: Take care when changing the activemq.xml file and the festival.xml file, as incorrect edits can lead to a complete loss of system functionality. Back up the files before you edit them.

About this task

The activemq.xml file has entries for <transportConnectors> followed by multiple <transportConnect.. elements. Each entry defines a protocol and port that the broker listens on.

Procedure

  1. Open the activemq.xml file and change the URI attribute in the openwire element, which defaults to port 61616 (shown in bold in this example):
    <transportConnector name="openwire" uri="tcp://localhost:61616"/>
  2. Save and close the file.
  3. On the system hosting the Rational DOORS Web Access server, open the festival.xml file, and modify the three broker ports (shown in bold in this example):
    <!-- Brokers we know about -->
          <f:endpoints>
             <f:broker 
                name="GENERALSERVICES" 
                url="tcp://127.0.0.1:61616?wireFormat.tcpNoDelayEnabled=true"
                username="" 
                password="" />
    
             <f:broker 
                name="DCSERVICES" 
                url="tcp://127.0.0.1:61616?wireFormat.tcpNoDelayEnabled=true"
                username="" 
                password="" />
    
             <f:broker 
                name="RMSERVICES" 
                url="tcp://127.0.0.1:61616?wireFormat.tcpNoDelayEnabled=true"
                username="" 
                password="" />
           </f:endpoints>
  4. Save and close the file.
  5. Restart all the components.

Feedback