Enterprise Console Web Services Adapter ports

The Enterprise Console Web Services Adapter is based on the Apache Tomcat technology and uses the same configuration file for port settings, which is stored in the <INSTALL_DIR>/conf/server.xml file.

By default, the adapter listens on three different ports, depending on the level of security required by the event source:

In order to modify these values, you need to edit the corresponding values inside the configuration file and restart the adapter. Here is an illustration of the values that need to be edited:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
   port="8080" minProcessors="5" maxProcessors="75"
   enableLookups="true" redirectPort="8443"
   acceptCount="100" debug="0" connectionTimeout="20000"
   useURIValidationHack="false" 
   disableUploadTimeout="true" />

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
   port="8433" minProcessors="5" maxProcessors="75"
   enableLookups="true"
   acceptCount="100" debug="0" scheme="https" secure="true"
   useURIValidationHack="false" 
   disableUploadTimeout="true" >
  ...
</Connector>

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
   port="8443" minProcessors="5" maxProcessors="75"
   enableLookups="true"
   acceptCount="100" debug="0" scheme="https" secure="true"
   useURIValidationHack="false" 
   disableUploadTimeout="true" >
  ...
</Connector>


Parent topic
Administering the Enterprise Console Web Services Adapter

Related topics
Starting the adapter
Stopping the adapter
Enterprise Console Forwarding configuration
Troubleshooting common problems