Runs fine on local machine w/
tomcat 6 but has a problem on server running tomcat 6. I'm sure it is a configuration thing i am missing.
I map most of my
servlets to jsps and they work fine. for example:
The problem I am having after deploying my app is url
patterns with no extention or an extention other than .jsp. For example, I stream many images and have mapping like:
I get
page not found when trying to access mydomain.com/images/profile_image.gif but, like i mentioned earlier, it works fine on local machine (localhost/images/profile_image.gif).
I ran a
test where i changed the url pattern for another servlet from
to
and that resulted in a
page not found when I tried to access mydomain.com/profile.asp.
One last test I did was to copy my conf/web.xml to the server but that did not solve the problem.
Any help will be much appreciated!