You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by BugRat Mail System <to...@cortexity.com> on 2000/09/01 17:42:20 UTC

BugRat Report #62 has been filed.

Bug report #62 has just been filed.

You can view the report at the following URL:

   <http://znutar.cortexity.com:8888/BugRatViewer/ShowReport/62>

REPORT #62 Details.

Project: Tomcat
Category: Bug Report
SubCategory: New Bug Report
Class: swbug
State: received
Priority: high
Severity: critical
Confidence: public
Environment: 
   Release: 3.1
   JVM Release: jdk 1.3.0
   Operating System: Windows NT
   OS Release: 4.0 Sp6
   Platform: Intel

Synopsis: 
Tomcat startup fails with ResourceBundle error using jdk 1.3.0

Description:
The following code:

    try
    {
      String args[] =
      {
        "-config", "c:/TestTomcat/TomcatConfig.xml"
      };
      org.apache.tomcat.startup.Tomcat.main( args );
    }
    catch( Exception e )
    {
      e.printStackTrace();
    }    
    catch( Error e )
    {
      e.printStackTrace();
    }    

catches an Error as follows:

ava.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find bundle for base name org.apache.tomcat.startup.LocalStrings, locale en_US

	at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:707)

	at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:679)

	at java.util.ResourceBundle.getBundle(ResourceBundle.java:546)

	at org.apache.tomcat.util.StringManager.<init>(StringManager.java:115)

	at org.apache.tomcat.util.StringManager.getManager(StringManager.java:260)

	at org.apache.tomcat.startup.Tomcat.<clinit>(Tomcat.java:26)

	at TestTomcat.TestTomcat.<init>(TestTomcat.java:19)

	at TestTomcat.TestTomcat.main(TestTomcat.java:67)


The Error does not happen using jdk1.2.2.