InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about Servlet Collaboration? |
|
Answer» Servlet Collaboration is the process of EXCHANGING information among the servlets of a Java web application. This allows information to be passed from one servlet to ANOTHER via method invocations. The Servlet API (Application Programming Interface) of Java, which EXPOSES two INTERFACES, is the primary technique offered by Java to ACHIEVE Servlet Collaboration.
These two interfaces contain the techniques for fulfilling the goal of information sharing amongst servlets. |
|