Answer Posted / srinu
doGet:-
1)doGet() method this is default HttpRequest method
2)The request parameters as a query string in the Visible in
address bar.
3)it sends limited data
4)security is low because query string visible in the
address bar
5)It doesn't used multiform content data(i.e file uploading
operation) never used.
6)small scale application.
doPost:-
1)doPost()method this n't a default HttpRequest method
2)The request parameters as a query string does n't Visible
in address bar.
3)it sends unlimited data.
4)Security is high.
5)its used for multiform content data
6)large scale application.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the inter-servlet communication?
Is servlet thread safe?
Explain how to improve Servlet Performance?
What if you need to span your transaction across multiple servlet invocations?
Why do you use session tracking in httpservlet?
Why doesn’t a servlet include main()?
Explain the custom jsp tags and the beans.
If servlet receives multiple requests, how many objects will it create?
Differentiate between the web server and application server?
What is servlet initializer?
How do you invoke a servelt?
What is war file?
What is servlet and list its types?
What is servlet invoker?
What are the different methods of session management in servlets?