0

One of our project we deployed in tomcat 5.5. our code is not an war file. deployed as a jar. and we did not deploy directly under webapps . we created new folder and placed everything over there. and we configured that path in server.xml under context tag

<code>
< Context path="/ABC" docBase="/app/apache-tomcat-5.5.26/webapps/ABC/"
                 debug="1" reloadable="true" crossContext="true">

  < /Context>
</code> 

The problem is. we were able to land on home page but the images are not load and none of the links are not working Home page link ; //ip:port/ABC/home.jsp

when we click any of the links then the context path is getting removed like the below one of the link : //ip:port/firstlink.jsp

please help me where we have to config the context path

Thanks in advance

Karthick
  • 21
  • 3