39380: How can I set mobilEcho and activEcho to listen on the same port (multi-homing)?

use Google Translate

Last update: 04-04-2016

Question:

How can I set mobilEcho and activEcho to listen on the same port on one computer?

Answer:

If activEcho and mobilEcho are installed on one computer, they can both listen on the same port (e.g. 443) only if they are bound to different IP addresses (multi-homing). Follow the steps below:

  1. Open a Command Prompt and type the following line for each IP address that will be used. Replace the <ip address> part with the corresponding IP address.
    • on Windows Server 2008: netsh http add iplisten <ip address>
    • on Windows Server 2003: httpcfg.exe set iplisten -i <ip address>
  2. Open the Registry Editor (Start -> Run -> regedit) and navigate to the following path: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\mobilEcho\Parameters4\NonRefreshable
  3. Double click on IPAdress. An Edit Multi-String window opens.
  4. In the Value Data field type the IP address that will be used for connections to mobilEcho.
  5. Click OK.
  6. Close the Registry Editor and navigate to C:\Program Files (x86)\Apache Software Foundation\Tomcat 7.0\conf
  7. Open the server.xml file with Notepad.
  8. Find the following line:
    <Connector port="443" maxHttpHeaderSize="8192"

      Note: If you have already changed activEcho's port, the new port number will be written instead of 443.
  9. Add the red text as in the example below. Replace the <IP address> part with the IP address that will be used for connections to activEcho.
    <Connector port="443" address="<IP address>" maxHttpHeaderSize="8192"

      Note: If you want to use a port other than 443, replace the port number now. 443 is the default HTTPS port, so if you change it, the new port will have to be appended to the server URL when accessing the servers. mobilEcho's port can be changed from mobilEcho Administrator -> Settings
  10. Save and close the server.xml file.
  11. Stop the mobilEcho service.
  12. Restart Tomcat.
  13. Start the mobilEcho service.

For additional technical notes, please check our online documentation.

Tags: