in web.xml i set my welcome file to a jsp within web.xml
<welcome-file>WEB-INF/index.jsp</welcome-file>
inside index.jsp i then forward on to a servlet
<% response.sendRedirect(response.encodeRedirectURL("myServlet/")); %>
however the application tries to find the servlet at the following path
applicationName/WEB-INF/myServlet
the problem is that web-inf should not be in the path. If i move index.jsp out of web-inf then the problem goes but is there another way i can get around this?