InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Servlet Manipulation? |
|
Answer» When ONE servlet accesses the LOADED SERVLETS on its server, it is called Servlet Manipulation. It also optionally performs some task on one or more of them. A servlet gets information about other servlets through the SERVLETCONTEXT object. We use getServlet() to get a particular servlet: public Servlet ServletContext.getServlet(String name) throws ServletException |
|