I am trying to call a servlet on button click.Its not a submit button,but a graphical button (not a part of form). When i click the button get the message:
HTTP STATUS 405:HTTP method GET is not supported by this URL. The specified HTTP method is not allowed for the requested resource.
When i reference a jsp page it displays the page.Is there any way that I can call a SERVLET and send some information along the servlet name.If yes ,what should be the code?
Originally posted by Ghazala Islam : Is there any way that I can call a SERVLET and send some information along the servlet name.If yes ,what should be the code?
I am afraid you cannot do that with servlets. Servlets only process the requests through the service() or doGet() or doPost() methods. You have to use a form with one of these methods to access the service methods. Clicking a graphical button without a from cannot take you to a servlet. There is no other way. Lets say if even if you send parameters in the URL, how will you invoke the service methods? You got to re-adjust your application.
RAGHU<br /> <br />"When the going gets tough, the tough get going"
in doget method of servlet...get values of parameter via request.getParameter("userId")
Hunny Lee
Greenhorn
Joined: Feb 17, 2007
Posts: 23
posted
0
Originally posted by Ghazala Islam:
HTTP STATUS 405:HTTP method GET is not supported by this URL. The specified HTTP method is not allowed for the requested resource.
Most probably you did not implement the doGet() method. Try doing that first and tell us how it goes.
Ghazala Islam
Ranch Hand
Joined: Nov 22, 2000
Posts: 73
posted
0
The problem is pretty much solved as i had not override the doGet method in the servlet. One more question,how can i associate a dyanamic value with a url,as usually we append fixed value with url as below,