I have my jsp as the following path: www.mydomain.com:8080/myApp/jsp/jspfile.jsp Now when I give the link for this file I dont want the make ":8080" visible.. Can I do something like the following path www.mydomain.com/myApp/jsp/jspfile.jsp OR www.mydomain.com/myApp/jspfile.jsp
you need to set up your application server to listen to HTTP at port 80 instead of 8080. That's usually in a configuration file somewhere, if there is no GUI to set it.