Answer Posted / suresh kumar pathak
doGet():Ask to get the thinng to get in requested URL
doPost():Same as GET method with extra information send in
body part.
doHead():Only header partof response without any body section.
dodoTrace():Ask for loopback of request message.(For testing)
doPut():say to put the enclosed info in requested URL.
doelete():sat to delete the info in requested URL.
doOption():ask for list of option in requested URL needed.
doConnect():say to connect for the purpose of tunnelling(to
pass servlet through firewall).Not a method of httpservlet.
| Is This Answer Correct ? | 33 Yes | 13 No |
Post New Answer View All Answers
Describe some assignments that are executed by servlet container?
How do you run a servlet?
What is the difference between genericservlet and httpservlet
How is the get () method different from the post() method?
What are the types of Session Tracking ?
Explain mvc pattern.
Explain Action Servlet?
Why do we have servlet filters?
What are important features of Servlet 3?
Why is it that we can't give relative URL's when using ServletContext.getRequestDispatcher() when we can use the same while calling ServletRequest.getRequestDispatcher()?
What do you mean by cgi and what are its drawbacks?
Is that servlet is pure java object or not?
What do you mean by httpservlet and how it is different from the genericservlet?
What do you mean by url pattern in servlet?
How do you design microservices?