Re: Problem calling a servlet
You have to look at it from the client side since that's where the path to the resource is constructed. If you'd like the more stable server relative path to a form, then do this in your jsp: form body .. ${request.contextPath} returns the server relative path of your webapp a
Problem calling a servlet
Hi, I have a servlet defined in web.xml and this is how I defined it controllerServlet tests.servlets.ControllerServlet controllerServlet /control I am trying to call this servlet from a JSP page using HTML form. Th