Hi all.
I have
tomcat 5.0
the context of my web application is : /toddstore
consider the following url :
http://localhost:8080/toddstore/login.html login.html contains a form to perform a log in operation.
<form action="/loginservlet">
invoking login.html by the browser, I got that the resource is not found.
changing the action to : action="/toddstore/loginservlet">
it works !
why ???
AFAIK, the first approach should work, coz the url is relative to the context path.
any ideas ??