problem regarding port number in url

Hello Everyone,

I have developed a web application using jsp and servlets with tomcat server. the application is working fine in local network, but when i run in the browser the url is displaying the port number(http://local_ip_address:8080/application_folder/starting_jsp ) which should not happen.even when i specify the IP address should i need to give the port number.

I want this application to run in IIS server also, so i came to know that i should download jspisapi.dll and include it in IIS configuration to run jsp.

please help me in this regard at the earliest.

[599 byte] By [Ashwin@banga] at [2007-11-27 2:25:46]
# 1
run ur server in port 80.then u can ignore ur prot number when giving it UTL
mshanua at 2007-7-12 2:34:29 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

When you're trying to access something without a port specified (HTTP, FTP, DB, etc), then the application will always assume that it is running on the default port. For the HTTP protocol it is the port 80. So al you need is to setup the webserver to run on port 80 instead of 8080 (which is usually just the 'webdevelopment' port).

BalusCa at 2007-7-12 2:34:29 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...