I can't see my ResCarta-Web site from outside my institution?

 

The default port for the Apache Tomcat service is 8080.  This port is defined for HTML traffic along with the more often used port 80.  On many campus networks all high ports are blocked.   This means the high HTML port of 8080 is also blocked.

If your server is not using port 80 for any other server (APACHE, IIS), you can change the default port of your Apache Tomcat server to port 80 by editing the  server.xml file located in the conf directory. Look for the connector which should be set to 8080. It should be like the following...

<Connector port="8080" protocol="HTTP/1.1"

connectionTimeout="20000" redirectPort=

"8443" />

Change the 8080 to 80 and restart your Tomcat service.

 <Connector port="80" protocol="HTTP/1.1"connectionTimeout="20000"

redirectPort="8443" />

 If your server is also running IIS and it is located on port 80,  your Tomcat service will not start.  To run both IIS and Tomcat and use a sinlgle port 80 will require a more extensive configuration of both IIS and tomcat.