Tomcat Jakarta wrote:
> Wich is the way to use getRequestDispatcher???
>
> If I use
> getRequestDispatcher("/Test")
>
> ... must 'Test' file be a servlet????
Yes and no. It has to be inside that context's URL space and it must map to
something that will be handled by a servlet. So, either a real servelt or JSP
page (which automatically transforms into a servlet).
This is also OK:
getRequestDispatcher( "/include.jsp" );
Nix.
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>