What is httpservlet and how it is different from genericservlet?
Answer / Hitendra Kumar Pandey
HTTPServlet is a specific type of Servlet that deals with HTTP protocol-based communication. It extends the GenericServlet class, which provides basic Servlet functionality independent of any protocol. The key difference lies in their implementation details: HTTPServlet overrides methods like doGet() and doPost(), while GenericServlet overrides service() method.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is servlet tunnelling?
give the syntax of doGet() and doPost()?
how many jsp scripting elements are there and what are those?
Why do we have servlet listeners?
What is the need of session tracking in web application?
Is it good idea to create servlet constructor?
How to get the actual path of servlet in server?
How can we implement a jsp page?
Difference between java beans & servlets?
servlet life cycle?
What is the <load-on-startup> element?
1.HttpSession 2.Hidden fields 3.URL Rewriting these primitive type of Session maintainance. What is the other type of process that could help to maintain the Session? pls Explain the process if u know?