View Single Post
Old 21-02-08, 02:49 PM   #2 (permalink)
JavaLang
Junior Member
 
Join Date: Jul 2007
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 JavaLang is on a distinguished road
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(...);
}
JavaLang is offline   Reply With Quote