i have read this in servletprogramming book. " each registered name for servlet is associated with one instance of the servlet." plz guide me in details what is mean by "registered name " . thx
I think the registration here means that the servlet is declared in the web.xml as the following: <web-app> ... <servlet> <servlet-name>servlet name</servlet-name> <servlet-class>servlet.name</servlet-class> </servlet>
Originally posted by haitham raik: I think the registration here means that the servlet is declared in the web.xml as the following: <web-app> ... <servlet> <servlet-name>servlet name</servlet-name> <servlet-class>servlet.name</servlet-class> </servlet>
right. just attested haitham's response, now you can take it for sure. cheers.