hai
please tell me which class is implementing the RequestDispatcher interface
interface RequestDispatcher
{
----
}
class ?? implements RequestDispatcher
{
-------
}
2.Q) the service() method is compulsory required ServletException and IOException
ex: public void service(HttpServletRequest request,HttpServletResponse response) throws IOException
while writing the above service() method i am able to run the
servlet program. I am getting the output with out writing the ServletException.
please clear me.