Matt Warden wrote:
> You cannot "include" a servlet in another servlet.
Huh?
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ... {
RequestDispatcher disp = req.getRequestDispatcher("pathToOtherSerlvet");
disp.include(req, res); // you could forward as well...
}
/Marcus