what is difference between protocol dependent and independent servlet?
- protocol dependent is eligible to execute on http protocol but protocol independent can execute on any protocol but sun suggest only for http.
- protocol independent extends GenericServlet.
- protocol dependent extends HttpSevlet.
- if it is dependent it will override doGet() and doPost() method.
- if it is independe it should override Init(), service() and destroy()
- protocol dependent imports java.servlet.http