Why should we go for interservlet communication?
Answers were Sorted based on User's Feedback
Answer / imtiyaz
There are three major reasons to use interservlet
communication:
Direct servlet manipulation
A servlet can gain access to the other currently loaded
servlets and perform some task on each. The servlet could,
for example, periodically ask every servlet to write its
state to disk to protect against server crashes.
Servlet reuse
One servlet can use another's abilities to perform a task.
Think back to the ChatServlet from the previous chapter. It
was written as a server for chat applets, but it could be
reused (unchanged) by another servlet that needed to
support an HTML-based chat interface.
Servlet collaboration
The most common, situation involves two or more servlets
sharing state information. For example, a set of servlets
managing an online store could share the store's product
inventory count. Session tracking is a special case of
servlet collaboration.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / ravikiran.chd
inorder to continue the flow by passing the response as a
request to the next servlet
| Is This Answer Correct ? | 2 Yes | 1 No |
why business logic written using servlets not in jsp. Jsp used for presentation purpose. serlvet used for coding business logic and controller logic. Reason for using servlets in business logic.
when you comppile the servlet is it neccesary to restaet the tomcat server?
What are the difference between HttpServlet and GenericServlets?
What are its drawbacks of cgi?
What is difference between cookies and httpsession?
What are the functions of an intercepting filter?
1.HttpSession 2.Hidden fields 3.URL Rewriting these primitive type of Session maintainance. What is the other type of process that could help to maintain the Session? pls Explain the process if u know?
How can an existing session be invalidated?
What are the different types of servlets?
Which is better jsp or servlet?
What is servletconfig?
why are using HttpServlet in realtime projects and why are not using Genericservlet