Need Tomcat5 configured to listen on all interfaces
Solution 1:
You need to change the connector stanza in your server.xml
file.
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8"
address="0.0.0.0"
redirectPort="8443" />
You need to add/change the address
attribute. Don't forget to restart your tomcat server after that.