In servlets, Why do we need both GET and POST method
implementations?

Answers were Sorted based on User's Feedback



In servlets, Why do we need both GET and POST method implementations?..

Answer / upender

I agree the above two answers. Here is my view.
HTTP Get method perform the following scenarios.

1) By default form submission without specifying method
name
2)if you click on hyperlinkS or images
3) or if you type url in address bar in brower

and Get there is no side effect. simple it get the resource
form serverside. Some time we require to deal with headers

Get can send only character data and limited data.and also
It can't support binary data.

POST method can support binary data and bulk data.

Is This Answer Correct ?    8 Yes 2 No

In servlets, Why do we need both GET and POST method implementations?..

Answer / abhijitbaji

if you are using HttpServlet then you have to implement
doGet() and or doPost() as per the method specified in jsp.
by default method type is "GET"

if you are using GenericServlet, you have to implement
servive()

Is This Answer Correct ?    8 Yes 4 No

In servlets, Why do we need both GET and POST method implementations?..

Answer / amit pandey

In servlet, the default method is doget(), which has
various limitations like the request length shuld be < than
1024 characters, all the information r send as URL, which
is not secure, large data like images cannot be send in URL.
Hence the POST method is implementated that overcome all
this issues w.r.t. the GET method.
Hence, in order that application shuld be more secure &
user orientated, both the methods are impelmentated.

Is This Answer Correct ?    5 Yes 4 No

Post New Answer

More Servlets Interview Questions

How to commuincate between an applet and a servlet?

0 Answers  


How to notify an object in session when session is invalidated or timed-out?

0 Answers  


How can you create a session in servlet?

0 Answers  


What is servlet name in web xml?

0 Answers  


what is the difference between Servlet and JSP?Advantage of JSP over Servelt?Any concept present in JSP which we cant implement in Servlet?

31 Answers   ABC, Apere, AZTEC, CTS, CybAge, iFlex, Impact Systems, Sara, TCS,






Is servlet synchronized?

0 Answers  


Which http method is said to be non-idempotent and idempotent?

0 Answers  


Explain the jar and war files in servlet?

0 Answers  


When a servlet accepts a call from a client, it receives two objects. What are they?

0 Answers  


Why do we have servlet filters?

0 Answers  


why are extending GenericServlet and why are extending HttpServlet explain?

7 Answers  


Hi frnds iam new to Java Kindy any one can provide or me Servlets Example code and can explain to me flow of servlets and as Jsp and Struts and provide to me some sample example on these 3 topic flow,code example,and tutorials,and related websites which i can refer....thanks in advance..........

3 Answers  


Categories