Unspecified NoClassDefFoundError

2002-10-13 Thread Ben Monnahan
Hi all, I am getting NoClassDefFoundError in my servlet, but it doesn't tell me which one it couldn't find. I'm guessing its a problem with GraphicsEnvironment.getLocalGraphicsEnvironment(). I tried a search on google, but it didn't turn up anything. Does anyone know what might be wrong?

Re: Unspecified NoClassDefFoundError

2002-10-13 Thread Padhu Vinirs
Just curious, why is a servlet calling paintComponent ? Is there any accompanying exception ? -- padhu Ben Monnahan wrote: Hi all, I am getting NoClassDefFoundError in my servlet, but it doesn't tell me which one it couldn't find. I'm guessing its a problem with

Re: Unspecified NoClassDefFoundError

2002-10-12 Thread Ben Monnahan
I'm using VisAD to do some visualizations. What I'm doing is taking a snapshot of the current display and writing it to an image. Since this is in a servlet, there isn't any real display. According to the VisAD list for the case when you don't need a real display you can use and offscreen

RE: Unspecified NoClassDefFoundError

2002-10-12 Thread Sexton, George
Are you setting the option to run AWT headless? export CATALINA_OPTS=-Djava.awt.headless=true bin/catalina.sh start -Original Message- From: Ben Monnahan [mailto:[EMAIL PROTECTED]] Sent: 11 October, 2002 4:12 PM To: Tomcat Users List Subject: Re: Unspecified NoClassDefFoundError I'm