What is the likely effect of calling a servlet with the POST HTTP method if that servlet does not have a doPost() method?
If the servlet has a doGet() method, it executes that instead.
404 response code: SC_NOT_FOUND.
405 response code: SC_METHOD_NOT_ALLOWED.
500 response code: SC_INTERNAL_SERVER_ERROR.
501 response code: SC_NOT_IMPLEMENTED.