what is the difference between doGet() and doPost()?
Answer Posted / giridhar gangapatnam
doGet() doPost()
1)doGet() method can send 1)doPost() method can send
limited amount of data large amount of data.
i.e.upto 256 characters
only.
2)In doGet() method when we 2)In doPost() methodrequest
send request then in Request is passed along withbody
Format there is no body part, part of theRequestFormat.
the request is passed along doPost() method Request
with only Request Format header Format has both body and
part only. header part.
3)doGet() method send limited 3)large amount data has
data because it has only header sent through body part
part,header part has limited of the RequestFormat.
memory to carry the data.
4)doGet() method support book 4)doPost() method doesn't
marks. support book marks.
5)when we send request parameters 5)The requested parameter
in doGet() it will display the in doPost() will not dis
information in URL as a query play the information as
string.so in doGet() data there a query string in URL.so
is no data security. data is secured.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What are the phases of servlet life cycle?
What is the functionality of actionservlet and requestprocessor?
Define the servlet mapping.
How do you communicate in between Applets and Servlets?
Define the life cycle of a servlets.
Which event is fired at the time of setting, getting or removing attribute from application scope?
What is servlet attributes and their scope?
How can we include static files in the jsp page?
What do you mean by servlet?
What is httpservlet class?
How can we create deadlock situation in servlet?
How do I use cookies to store session state on the client?
Name the different ways of session tracking.
What does the term localization refer to?
Write a program to show the functionality of doget and dopost method?