we have recently migrated from VisualAge 3.5 to WSAD4.0.
In our application previously when we make a call to a
servlet from a
JSP we include it as "/com.app.loginServlet" . Now when i export this application ito wsad and run the application in WSAD websphere
test environment the Servlet cannot be located unless i give the path as
"Servlet_proj/com.app.loginServlet" where Servlet_proj is the WebProject which contains the Servlet.
In VAJ test environment if i had to invoke a JSP i used to give it as
"http://localhost:8080/login.jsp"
but now in WSAD i had to mention the name of the project folder also explicitly as "http://localhost:8080/JSPs/login.jsp"
I want to invoke my JSPs without including the Project name in the path. Can i do that???
Is there any way to invoke my servlets and JSPs in the same way as it was before without changing the paths ??
Please help me out of this..............
Thanks in Advance