This is a long shot but hopefully someone can help.
My application is using spring framework mvc. 99% of if works properly. However when I attempt to go to one link lets call it [path]/link.html. I get a 404 error. If however, I go to this link within my development environment (tomcat,windows,IE and eclipse) I get no such 404 error (everything works as expected). Its only happening in my production site (web logic).
I've looked at log files and nothing is showing up as a problem.
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/link.html">linkController</prop>
...
</props>
</property>
</bean>