You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by sa...@totalsync.com on 2000/08/21 09:49:23 UTC

[PATCH] RequestDispatcherImpl.java

The following patch fixes the MissingResourceException that happens every
time a RequestDispatcher is called via request.getRequestDispatcher()
method.

Index: RequestDispatcherImpl.java
===================================================================
RCS file:
/home/cvspublic/jakarta-tomcat/src/share/org/apache/tomcat/facade/RequestDis
patcherImpl.java,v
retrieving revision 1.9
diff -u -r1.9 RequestDispatcherImpl.java
--- RequestDispatcherImpl.java	2000/08/02 02:17:25	1.9
+++ RequestDispatcherImpl.java	2000/08/21 07:47:30
@@ -100,7 +100,7 @@
 final class RequestDispatcherImpl implements RequestDispatcher {
     // Use the strings from core
     private static StringManager sm = StringManager.
-	getManager("org.apache.tomcat.core");
+	getManager("org.apache.tomcat.resources");

     Context context;
     // path dispatchers


Thanks
Scott Sanders