Error message from Apache

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Dean

Error message from Apache

Post by Dean » Thu Feb 20, 2003 10:42 am

Hi All:
I have written some applet programs using JFreeChart for displaying charts. The applets work well in the local machine. But, I put these applets in the Apache web server (2.0 or 1.3). Apache responses the applets always slowly, especially in the first browsing. I check the "error_log" in the Apache and find out following Error Messages:

...
[Thu Feb 20 17:24:29 2003] [error] [client 202.39.10.30] File does not exist: /var/www/chart_demo/com/jrefinery/data/resources/DataPackageResources_zh.properties
[Thu Feb 20 17:24:29 2003] [error] [client 202.39.10.30] File does not exist: /var/www/chart_demo/com/jrefinery/data/resources/DataPackageResources_zh_TW.class
...

It looks like no such class files in specific path.

How do I solve these problem and make Apache responsse applet more quickly, or how to get these files above?

Thanks.....

David Gilbert

Re: Error message from Apache

Post by David Gilbert » Fri Feb 21, 2003 12:38 pm

Those errors should be no problem, they just report the attempts that Java is making to find a resource bundle for your locale...there is a standard set of steps that will always end up with at least the default resource bundle being loaded. I don't have enough experience with applets to tell you how much that will be affecting performance...in an application, it is negligible.

Regards,

Dave Gilbert

Locked