Question : avoid tomcat home page

Hi,
I've a web-application on my server and when my users connect to this address: http://myserver:8080 they get tomcat home page.
I'd like to avoid that my users see the home page of Tomcat but when they try to access to: http://myserver they goes directly to my web-application.
How can I modify my web-application to avoid tomcat home page?

Thanks in advance!

Answer : avoid tomcat home page

>> http://myserver:8080 they get tomcat home page.
In web.xml you could configure your application start up page in
yourpage.jsp/htmlome-file>,
So this would skip the index page provided by default...

or you could redirect to your application from the index.jsp to your application.

>> http://myserver they goes directly to my web-application.
You would have configured in such a way that, the listening port is changed to 80 instead of 8080.
Random Solutions  
 
programming4us programming4us