user2365917
user2365917

Reputation: 1185

doGet() is not implemented by this URL

In my servlet I used doPost() method and while running the servlet it is giving http method doGet is not supported by this url.And I set POST GET in my web.xml under .Still getting the method doGet() not implemented. Some times giving me doPost() is not supported by this URL. How to resolve these?

Upvotes: 0

Views: 191

Answers (1)

Jigar Joshi
Jigar Joshi

Reputation: 240898

check the doGet() and doPost() implementation for your servlet, looks like you just created a setvlet and IDE added a basic template method which throws an unimplemented exception

Upvotes: 1

Related Questions