• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

difference between GenericServlet and HttpServlet

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
difference between GenericServlet and HttpServlet
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"registration hi",

You've already been warned to change your display name to adhere to JavaRanch standards.

Your display name must be a first and a last name separated by a space character, and must not be obviously fictitious.

Be advised that accounts with invalid display names are removed.

bear
JavaRanch Sheriff
[ March 06, 2006: Message edited by: Bear Bibeault ]
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"suresh",

Thanks for changing your display name, but it is still not valid. Please read Bear's request more closely.

This is your final warning

thanks,
Dave
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

First of all, Both Generic Servlet and HttpServlet are abstract.

GenericServlet has service() for servicing client requests but in HttpServlet we have Http methods like post and get to service the clients.

GenericServlet is used for generic protocols and HttpServlet is used specially for Http Protocols.

Thanks,
chandroo
 
reply
    Bookmark Topic Watch Topic
  • New Topic