Re: Problem calling a servlet

2007-11-24 Thread David Smith
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

2007-11-24 Thread Uma Kalluru
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