Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 36360 invoked from network); 10 Aug 2006 12:13:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Aug 2006 12:13:28 -0000 Received: (qmail 39680 invoked by uid 500); 10 Aug 2006 12:13:24 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 39627 invoked by uid 500); 10 Aug 2006 12:13:24 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 39615 invoked by uid 99); 10 Aug 2006 12:13:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Aug 2006 05:13:24 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of oleg.v.khaschansky@gmail.com designates 64.233.182.191 as permitted sender) Received: from [64.233.182.191] (HELO nf-out-0910.google.com) (64.233.182.191) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Aug 2006 05:13:23 -0700 Received: by nf-out-0910.google.com with SMTP id a25so528062nfc for ; Thu, 10 Aug 2006 05:13:01 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hWK8X425+oiWkxuwftwjETcTO2U++h342n6GrC7KDupAeYKSwH/2WuwtcfGY/QJX6JcUQ9YoGWwxiDkXJXuOvQYGKPi7Pd4n000ZY4YI8/7db+rgunDKwhNWhCK3lAHSBEqgEoVaf8s10KiP7rUUMmnZdbIzG5UFaJtOOw7P5nc= Received: by 10.78.164.13 with SMTP id m13mr1213057hue; Thu, 10 Aug 2006 05:13:01 -0700 (PDT) Received: by 10.78.168.11 with HTTP; Thu, 10 Aug 2006 05:13:01 -0700 (PDT) Message-ID: <26c14c2a0608100513s60809580sb6c6fbae69dacb28@mail.gmail.com> Date: Thu, 10 Aug 2006 16:13:01 +0400 From: "Oleg Khaschansky" To: harmony-dev@incubator.apache.org Subject: Re: Exceptions found while running servlet... In-Reply-To: <11f7653a0608092244y74fd7187rbfdba08bec29bea5@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <11f7653a0608092244y74fd7187rbfdba08bec29bea5@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > 2.- Trying to generate charts using JFreeCharts (server-side): > > java.lang.NoClassDefFoundError: org/apache/harmony/awt/gl/ImageSurface > at java.awt.image.BufferedImage.createImageSurface(BufferedImage.java:659) > at java.awt.image.BufferedImage.(BufferedImage.java:352) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1211) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1193) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1178)... Do you use harmony snapshot? I tried to run simple test which creates BufferedImage with aug 04 snapshot and got an UnsatisfiedLinkError instead of it. But absence of the gl.dll in that snapshot is a known issue and likely to be fixed in the next snapshot. Maybe you could try to look into your HARMONY_HOME/lib/boot/awt.jar and check if it includes org.apache.harmony.awt.gl.ImageSurface class? The snapshot has it and there shouldn't be any problems with loading this class. If you built harmony from sources, please consider refreshing awt module and rebuilding with -Dwith.awt.swing=true On 8/10/06, Martin Cordova wrote: > Is it OK to send this type of feedback to the list? please let me know > if not, and what subject conventions should I use (is there a link > about this?). I am not a Harmony developer, just a new user, I can > only provide feedback from my tests. > > ---- > > I am running a small webapp, using Winstone servlet engine and IBM JDK > 1.4.2 SP4 on WinXP SP2. Runs fine. I switched to Harmony JRE (aug-4), > and found these exceptions: > > 1.- I see this error while using servlet includes and also at the end > of some pages: > > java.lang.ArrayIndexOutOfBoundsException: 0..0 at > org.apache.harmony.luni.platform.OSNetworkSystem.sendStreamImpl(OSNetworkSystem.java) > at org.apache.harmony.luni.platform.OSNetworkSystem.sendStream(OSNetworkSystem.java:194) > at org.apache.harmony.luni.net.PlainSocketImpl.write(PlainSocketImpl.java:647) > at org.apache.harmony.luni.net.SocketOutputStream.write(SocketOutputStream.java:89) > at winstone.WinstoneOutputStream.commit(WinstoneOutputStream.java:152) > at winstone.WinstoneOutputStream.flush(WinstoneOutputStream.java:189) > at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:176) at > java.io.OutputStreamWriter.convert(OutputStreamWriter.java:240) at > java.io.OutputStreamWriter.write(OutputStreamWriter.java:228) at > java.io.PrintWriter.doWrite(PrintWriter.java:640) at > java.io.PrintWriter.write(PrintWriter.java:622) at > winstone.WinstoneResponseWriter.write(WinstoneResponseWriter.java:45) > at java.io.PrintWriter.write(PrintWriter.java:607) at > java.io.PrintWriter.write(PrintWriter.java:657) at > java.io.PrintWriter.print(PrintWriter.java:455) at > > 2.- Trying to generate charts using JFreeCharts (server-side): > > java.lang.NoClassDefFoundError: org/apache/harmony/awt/gl/ImageSurface > at java.awt.image.BufferedImage.createImageSurface(BufferedImage.java:659) > at java.awt.image.BufferedImage.(BufferedImage.java:352) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1211) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1193) > at org.jfree.chart.JFreeChart.createBufferedImage(JFreeChart.java:1178)... > > The JDBC related code is running fine, performance also looks very good. > > I will contact Winstone developer to see if he can help in some way to > identify the problem. He already helped me a few months ago to help > identify a bug in GNU Classpath server socket API. > > Regards, > Martin > -- > Dinamica - RADical J2EE framework > open source, easy and powerful > http://www.martincordova.com > > --------------------------------------------------------------------- > Terms of use : http://incubator.apache.org/harmony/mailing.html > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > For additional commands, e-mail: harmony-dev-help@incubator.apache.org > > --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org For additional commands, e-mail: harmony-dev-help@incubator.apache.org