In my servlet, the path define like this:
@WebServlet("/checklogin")
from jsp i call this servlet by
<form id="login-form" name="login" action="checklogin" method="post">
deploy to localhost, it running perfect, but from a real server, it keep saying 404 file not found error.
file structures:
           ---->index.jsp
           ---->admin.jsp
project1   ---->WEB-INF -- > classes ---> project1 ----> checklogin.class
           ---->META-INF
 
    