How do I over come this problem?
My Servlet has been designed to handle the POST request
public void doPOST(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException
{
doGet(req,res);
}
My Html is fine:
<form method="POST" action="verifylogin">
but i get this error:
Status report
message HTTP method POST is not supported by this URL
description The specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL).
But the thing was working perfectly for a GET request!
Please Help!
Thanks