Answer Posted / kishore
doGet method will append data to URL while transferring
data to the server.
doPost method will not append data. It is considered to be
secured. The data will be inside the body of request and
response.
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
What is life cycle of Servlet?
Explain web container.
What are the type of protocols used in httpservlet?
Explain how does JSP handle run-time exceptions?
How do you find out what client machine is making a request to your servlet
What do you mean by mime type?
When to use doget() and when dopost()?
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
What is the difference between using getSession(true) and getSession(false) methods?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
What is setattribute in servlet?
How will two or three servlets interact or communicate with each other?
When servlet object is created?
what is servlet chaining?
What is SingleThreadModel interface?