I have a servlet that does a pretty simple include:
RequestDispatcher rd=req.getRequestDispatcher("OutputCurrentWeek.html");
if (rd==null) {
WebApp.log("Error getting RequestDispatcher for Include in
ViewCal!",new Exception());
} else {
rd.include(req,res);
}
This works on 5.0.14 if the application is not running in a ROOT
context. If the app is in a ROOT context, it doesn't work. No exception
is logged, so a non-null RequestDispatcher is returned, it just doesn't
seem to work. I just verified that the application works correctly on
4.1.29 for both ROOT and non-ROOT contexts.
Is this an area where the spec changed, or is 5.0.14 broken?
George Sexton
MH Software, Inc.
Voice: 303 438 9585
http://www.mhsoftware.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]