Describe Servlet collaboration

Describe Servlet collaboration.

- Servlet collaboration is all about sharing information among the servlets.

- Collaborating servlets is to pass the common information that is to be shared directly by one servlet to another through various invocations of the methods.

- To perform these operations, each servlet need to know the other servlet with which it is collaborated.

- The collaboration can be done by redirecting a servlet from another or loading the servlets from the ServletContext access methods.

- This can also be achieved by the methods forward() and include() of RequestDispatcher or by sendRedirect() method.
Describe the basics of Servlets
Servlets are java classes which run on a web server. The results produced by the servlet are viewed on a remote web server....
What are the important items in javax.servlets. Explain them
Servlets : Defines all the methods that a servlets implements. Servlets receives and responds to a request from the web clients.....
Describe the main purpose of servlets
A java enabled server’s functionality can be extended by a servlets...
Post your comment