Answer Posted / tulasi vani
Servlets communicate with each other with the help of
RequestDispatcher objects.
RequestDispatcher rd=getServletConfig().getNamedDispatcher
(...);
... name used to identify a servlet i.e. name given in the
web.xml in the url-pattern
Is This Answer Correct ? | 17 Yes | 1 No |
Post New Answer View All Answers
What do you mean by httpservlet and how it is different from the genericservlet?
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
What is the requirement of servlet config and servlet context implemented and how are they implemented?
Why do we need a constructor in a servlet if we use the init method?
What are the kinds of http requests?
Why HttpServlet class is declared abstract?
How do you invoke a servelt?
Explain the difference between servletconfig and servletcontext in servlet?
What is meant by servlet? What are the parameters of the service method?
When Servlet is unloaded?
If a servlet is not properly initialized, what exception may be thrown?
How is the get () method different from the post() method?
Explain the war file?
Write a program to show the functionality of doget and dopost method?
What is servlet invoker?