Hi Anthony
The following is lifted from the API docs for ServletContext.getRequestDispatcher():
Returns a RequestDispatcher object that acts as a wrapper for the resource located at the given path. A RequestDispatcher object can be used to forward a request to the resource or to include the resource in a response. The resource can be dynamic or static.
The pathname must begin with a "/" and is interpreted as relative to the current context root. Use getContext to obtain a RequestDispatcher for resources in foreign contexts. This method returns null if the ServletContext cannot return a RequestDispatcher.
Your pathname does not begin with a "/" character - have you tried changing this?
[ October 24, 2003: Message edited by: Michael Fitzmaurice ]
[ October 24, 2003: Message edited by: Michael Fitzmaurice ]