Hi,
I tried to integrate Tomcat (on port 8080) with Apache (on port 80). When I tested on the local machine(192.168.2.3), the following two urls pointed to the same page:
http://localhost/examples/jsp/dates/date.jsp
http://localhost:8080/examples/jsp/dates/date.jsp
However, when I tested on another computer, only this url works:
http://192.168.2.3:8080/examples/jsp/dates/date.jsp
The other address:
http://192.168.2.3/examples/jsp/dates/date.jsp says "page cannot be found"
Did I sucessfully intergrate Tomcat with Apache? Help me!
Lance