Java
Programming and Technical
Logical Reasoning
Coding Decoding
What is difference between Generic
Servlet and HTTP Servelet?
Read Solution (Total 3)
-
- generic servlet can accept from any protocol and service method in this servlet is abstract.
http servlet can accept from only http protocol and service method in this servlet is not abstract - 10 years agoHelpfull: Yes(0) No(0)
- generic servlet works on all protocols where http servlet works on http protocols only.All networking mostly work on http protocol
- 9 years agoHelpfull: Yes(0) No(0)
- The main difference between Generic Servlet and HTTP Servlet is that the Generic Servlet is protocol independent and can be used with any protocol such as HTTP, SMTP, FTP and CGI. While HTTP Servlet is protocol dependent and only used with HTTP protocol.
- 3 years agoHelpfull: Yes(0) No(0)
Java Other Question