I have a webapp that is working swimmingly in Tomcat 6. Let's say it's running on server:8282/MyApplication. I have a context xml that looks like this:
<Context crossContext="true"
debug="5"
docBase="MyApplication"
path="MyApplication"
reloadable="true">
In my application, my links look like
server:8282/MyApplication/myAction.do?params=blah
When I switch it to Tomcat 7, it seems to change the link to:
server8282/myAction.do?params=blah
I haven't changed -anything- in the application, it's the same code in both places. Is there some global setting I can change to get that "MyApplication" back in?
Edit: the code that generates the link is, as an example,:
<a href="<%=request.getContextPath() %>/myAction.do?params=blah">do the blah</a>