by matthew » Wed Sep 26, 2007 2:35 am
Some ISPs block port 80 if you are a home user, of course this is if you are trying to access your pc from another location, external to your LAN.
I would try to use a different port for tomcat, like port 5000. If this works then you know it is an ISP issue. If it doesnt then like FlyingSaucrDude said it is probably a firewall issue.
So change tomcat to use a different port other than 80:
1. Open C:\Program Files\Apache Software Foundation\Tomcat 6.0\conf\server.xml
2. Find <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
3. Change port="80" to port="5000"
4. Restart Tomcat.
Matthew.