What does HTTP status 405, method not supported mean?
The HTTP 405 status, “Method not supported”, means that the submitted request method is not implemented by the servlet that handled the response. For example, a servlet may only have a doGet() method, not doPost(), and therefore be unable to issue an HTML document for the response body. In other words, the response means you can’t make that kind of request for this servlet. One common technique to easily enable a servlet to support POST requests is for the doPost() method to call the doGet() method, though some the HttpServletRequest object properties will vary from a normal GET request. Actions: Follow-up, clarify or correct this answer. Submit a new question.