|
Re: HTTP Status 405 - HTTP method GET is not supported by this URL
Hi,
You need to implement the doGet() method for your servlet to support GET requests.
and if u are using POST data from ur html then You could just delegate to doPost:
... doGet(...)
{
doPost(...);
}
|