We have an application using
JSP &
EJB using
struts as framework. The beans are already deployed in the Weblogic sever & the webapplication is accessing that beans under a context path "ECatalogAdmin". The problem is when i am specifying my image path in my JSP file , i am using like <img src="../images/go_.gif"> But it is not able to locate that image because it is not able to findout the CONTEXT path which the application is running.
But i specify the image path like :
<img src="<%=request.getContextPath()%/images/go_.gif"
its working.
If anybody can suggest any idea, that would be fine.