Explain the methods in Generic and HTTP Servlets?
Answers were Sorted based on User's Feedback
Answer / guest
Generic servlets has service() method to handle requests
HttpServlet has doGet(),doPost(),doHead() mehtods
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / chaitu
All the methods in Generic servlets are abstract methods.
Even though HTTP Servlet is an abstract there are no
abstract methods
| Is This Answer Correct ? | 2 Yes | 0 No |
what is meant by servlet to servlet communication?
Which httpsession object is used to view and manipulate information about a session?
Difference between forward() method and sendredirect() method ?
Can you use javascript in servlets?
What is the use of httpservletrequestwrapper?
Is servlet synchronized?
Can you send the mail from a servlet ,if yes tell how?
Explain the lifecycle of a servlet?
How to get the current httpsession object?
How do we share data using 'getservletcontext ()?
Write a servlet to upload file on server.
What is SingleThreadModel interface?