Re: Tomcat Error: java.lang.NoClassDefFoundError:

2005-01-24 Thread Kathie Manson
. -- Forwarded message -- From: QM [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Date: Thu, 20 Jan 2005 05:55:09 -0600 Subject: Re: Tomcat Error: java.lang.NoClassDefFoundError: org/apache/naming/JndiPermission On Thu, Jan 20, 2005 at 10:01:18AM +1100, Kathie Manson

Re: Tomcat Error: java.lang.NoClassDefFoundError: org/apache/naming/JndiPermission

2005-01-20 Thread QM
On Thu, Jan 20, 2005 at 10:01:18AM +1100, Kathie Manson wrote: : Up until yesterday, I was happily running tomcat 4.1.30. Then, for : some reason, I started getting this error. I'm not sure why. It's : likely that I somehow changed the class path, or installed something : else that affected

Re: tomcat error page

2004-12-29 Thread Ben Souther
On Wed, 2004-12-29 at 21:33, alis asma alias wrote: When there is an error in our web application, Tomcat will produce and error page that list down all the Exception stack trace and also THe version of the Apache Tomcat. To avoid displaying the default error page and to customize the error

RE: Tomcat error

2004-08-04 Thread Schalk Neethling
Hey there all I get the following line when running my servlet on Tomcat version 5.0.25: java.lang.UnsupportedClassVersionError: org/volume4/searchEngine/lawSearch (Unsupported major.minor version 49.0) What exactly does this mean and how do I go about fixing this? Thanks! -- Kind Regards Schalk

RE: Tomcat error

2004-08-04 Thread Shapira, Yoav
Hi, Make sure you compile the class with JDK 1.4 or earlier, not JDK 1.5. Yoav Shapira Millennium Research Informatics -Original Message- From: Schalk Neethling [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 8:16 AM To: Tomcat Users List Subject: RE: Tomcat error Hey

Re: Tomcat error

2004-08-04 Thread David Smith
Off handed guess -- it means your classes were compiled with a version of a JDK not compatible with the JDK running your Tomcat install. Recompile with the same JDK you're using with Tomcat and the whole issue should be solved. --David Schalk Neethling wrote: Hey there all I get the following

Re: Tomcat error

2004-08-04 Thread QM
On Wed, Aug 04, 2004 at 02:16:20PM +0200, Schalk Neethling wrote: : I get the following line when running my servlet on Tomcat version 5.0.25: : : java.lang.UnsupportedClassVersionError: org/volume4/searchEngine/lawSearch : (Unsupported major.minor version 49.0) : : What exactly does this mean

RE: Tomcat error

2004-08-04 Thread Shapira, Yoav
, August 04, 2004 9:40 AM To: Shapira, Yoav Subject: Re: Tomcat error Yoav Thanks, I assume I can have more then one version of the jdk installed on my system correct? Is this error caused by Tomcat or that there is an older version of the jdk on the server? Shapira, Yoav wrote: Hi, Make sure you

RE: Tomcat error

2004-08-04 Thread Caldarale, Charles R
From: Schalk Neethling [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat error java.lang.UnsupportedClassVersionError: org/volume4/searchEngine/lawSearch (Unsupported major.minor version 49.0) What exactly does this mean and how do I go about fixing this? Thanks! Looks like someone has

Re: Tomcat error

2004-08-04 Thread Jon Wingfield
The 49.0 is a magic number within the class bytecode. This type of error typically means the class was compiled using a newer version of the jdk than the runtime that is interpreting the bytecode. So, did you, say, compile the lawSearch class using jdk 1.5 but are running Tomcat against jdk

Re: Tomcat error

2004-08-04 Thread Sunitha Kumar
PROTECTED] Sent: Wednesday, August 04, 2004 8:16 AM To: Tomcat Users List Subject: RE: Tomcat error Hey there all I get the following line when running my servlet on Tomcat version 5.0.25: java.lang.UnsupportedClassVersionError: org/volume4/searchEngine/lawSearch (Unsupported major.minor

Re: Tomcat error

2004-08-04 Thread Schalk Neethling
-Original Message- From: Schalk Neethling [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 9:40 AM To: Shapira, Yoav Subject: Re: Tomcat error Yoav Thanks, I assume I can have more then one version of the jdk installed on my system correct? Is this error caused by Tomcat

RE: Tomcat error

2004-08-04 Thread Dale, Matt
Not officially but it should work. Why not use 5.0.27 too as this is the latest stable release. Ta Matt -Original Message- From: Sunitha Kumar [mailto:[EMAIL PROTECTED] Sent: 04 August 2004 18:23 To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: Tomcat error Yoav: For Run time

RE: Tomcat error

2004-08-04 Thread Shapira, Yoav
List Cc: [EMAIL PROTECTED] Subject: Re: Tomcat error Yoav: For Run time, can JDK 1.5 work with tomcat 5.0.25 or 5.0.19? thanks, -sunitha Shapira, Yoav wrote: Hi, Make sure you compile the class with JDK 1.4 or earlier, not JDK 1.5. Yoav Shapira Millennium Research Informatics -Original

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-03-16 Thread Wendy Smoak
A while ago, Yoav Shapira wrote: I asked if it's the nice IE error pages or the actual tomcat ones. There's an IE setting in Internet Options along the lines of Display Friendly Error Pages that can mask the server's error pages if enabled, and it's enabled by default on some platforms. I

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs.

2004-03-16 Thread Michael Davis
Hi, This is really easy with jsp. I'm doing something similar. I don't have the code here, but it goes something like: in servlet.java: HttpRequest req; // this is passed to you HttpSession sess = req.getSession(); sess.setAttribute( errorMessage, Something terrible has happened. ); And I

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-26 Thread Shapira, Yoav
Howdy, Yoav, this is Tomcat-only, on my development box, so no Apache error pages. Great, but that's not what I asked ;) I asked if it's the nice IE error pages or the actual tomcat ones. There's an IE setting in Internet Options along the lines of Display Friendly Error Pages that can mask

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-25 Thread Shapira, Yoav
Howdy, error-page exception-typejavax.servlet.ServletException/exception-type location/WEB-INF/jsp/exceptions/ServletException.jsp/location /error-page (in the appropriate place, at the bottom just above /web-app) When this code executes: if ( report == null ||

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-25 Thread Evgeny Gesin
This is JSP rather than Tomcat question, but I hope for a reply. I have a JSP with the following jsp:plugin code: jsp:plugin type=applet code=com.package.Applet.class codebase=/application1/applets/ width=50 height=50 /jsp:plugin Web applications, which run this applet, specify different

Re: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-25 Thread Jerry Ford
Wendy: Here's your problem: location/WEB-INF/jsp/exceptions/ServletException.jsp/location JSPs can't be run from inside the WEB-INF directory. Try moving your jsp/exceptions directory up one level. Jerry Wendy Smoak wrote: From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Try

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-25 Thread Wendy Smoak
From: Jerry Ford [mailto:[EMAIL PROTECTED] Wendy: Here's your problem: location/WEB-INF/jsp/exceptions/ServletException.jsp/location JSPs can't be run from inside the WEB-INF directory. Try moving your jsp/exceptions directory up one level. All of my JSP's are under WEB-INF, and they work

RE: Tomcat error while using a class with JSP!

2003-12-09 Thread jakarta
I believe that you have to package your class ie boots.PVDatabase as I recall unpackaged classes are not valid John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 9:42 AM To: [EMAIL PROTECTED] Subject: Tomcat error while using a

RE: Tomcat error while using a class with JSP!

2003-12-09 Thread GuptaD
[mailto:[EMAIL PROTECTED] Sent: 09 December 2003 15:04 To: 'Tomcat Users List' Subject: RE: Tomcat error while using a class with JSP! I believe that you have to package your class ie boots.PVDatabase as I recall unpackaged classes are not valid John -Original Message- From: [EMAIL

RE: Tomcat error while using a class with JSP!

2003-12-09 Thread GuptaD
Title: RE: Tomcat error while using a class with JSP! Hi John, I have put the classes in the package and Tomcat is now able to recognize that. Now It is not recognizing the Oracle drivers which I have them in C:\Jdbcdrivers as classes12.zip and added in CLASSPATH but When I call it from

Re: tomcat error

2003-07-24 Thread John Turner
The address Tomcat is trying to use to startup does not exist on the machine. This can happen if you are using NAT or have some other address masking/forwarding going on. Are you sure that the IP address Tomcat is using exists on the machine? If you've given Tomcat a hostname, does the IP

RE: tomcat error

2003-07-24 Thread Steven Garrett
it doesn't work and I continue to get that error. The hostname is md11 -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:32 PM To: Tomcat Users List Subject: Re: tomcat error The address Tomcat is trying to use to startup does not exist

RE: tomcat error

2003-07-24 Thread Mike Curwen
: RE: tomcat error The IP address resolves to the hostname and vice versa. There is no masking going on. and this box is not natted. What is really strange is that my tomcat instance was working just fine yesterday, then we rebooted this box (it's a development server, gets rebooted

Re: tomcat error

2003-07-24 Thread John Turner
Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:32 PM To: Tomcat Users List Subject: Re: tomcat error The address Tomcat is trying to use to startup does not exist on the machine. This can happen if you are using NAT or have some other address masking

RE: tomcat error

2003-07-24 Thread Steven Garrett
default version is uninstalled by me a while ago -Original Message- From: Mike Curwen [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:40 PM To: 'Tomcat Users List' Subject: RE: tomcat error RH has a version of Tomcat that installs with the 'default' install of RH. Is this one

RE: tomcat error

2003-07-24 Thread Steven Garrett
no dhcp, it has a hardcoded ip address and the loopback address looks normal 127.0.0.1 netmask 255.0.0.0 -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:43 PM To: Tomcat Users List Subject: Re: tomcat error ifconfig -a shows you the IP

Re: tomcat error

2003-07-24 Thread John Turner
: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:43 PM To: Tomcat Users List Subject: Re: tomcat error ifconfig -a shows you the IP address you expect? Sounds to me like DHCP got switched on somehow, then when you rebooted it picked up a new IP address and it isn't the one

RE: tomcat error

2003-07-24 Thread srevilak
StandardServer.await: create[8005]: java.net.BindException: Cannot assign requested address Is there something else that's already bound to the port? The hostname is md11 If you do $ telnet md11 PORT where PORT is the port number tomcat wants to use, do you get a connected message? If

Re: Tomcat error message with EspressReport

2003-06-11 Thread Chad Lemmen
Upgrading to Tomcat 4.1.24 fixed my problem. On Tue, 10 Jun 2003, Chad Lemmen wrote: I'm trying to set up a servlet with EspressReport. EspressReport is a report writer that connects to a database and generates a report. I'm using Tomcat 3.2.1 and Apache 1.3.19. Tomcat is writing this

Re: Tomcat error when starting after enabling Ajp13Connector

2003-03-21 Thread John Turner
- [EMAIL PROTECTED]turner.com cc: Subject: Re: Tomcat error when starting after enabling Ajp13Connector 03/20/2003 11:14 AM

Re: Tomcat error when starting after enabling Ajp13Connector

2003-03-20 Thread John Turner
Ajp13Connector is not compatible with MBeans. Either use CoyoteConnector, or disable the MBean lines in your server.xml. John On Thu, 20 Mar 2003 11:00:11 -0500, [EMAIL PROTECTED] wrote: All I am trying to plugin tomcat with IIS 5 using jk1.0 which requires enabling

Re: Tomcat error when starting after enabling Ajp13Connector

2003-03-20 Thread QJian
]To: Tomcat Users List [EMAIL PROTECTED] turner.com cc: Subject: Re: Tomcat error when

RE: Tomcat error

2003-03-04 Thread Mike Jackson
Since you're using the legacy apj13 code you need to comment out the jmx stuff from the server.xml file. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Adam Denenberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:32 AM To: Tomcat Users List

Re: Tomcat error

2003-03-04 Thread Jacob Kjome
Either use the Coyote connector for AJP (the one configured for port 8009) and comment out the Ajp13Connector config or keep using the Ajp13Connector config and comment out the mbean stuff near the top of server.xml. Either will solve the problem. Or, you can just ignore the error. Jake At

RE: Tomcat error

2003-03-04 Thread Harry Gehring
] Sent: Tue 3/4/2003 3:26 PM To: Tomcat Users List Cc: Subject: Re: Tomcat error Either use the Coyote connector for AJP (the one configured for port 8009) and comment out the Ajp13Connector config or keep using the Ajp13Connector

RE: Tomcat error

2003-03-04 Thread Jacob Kjome
PROTECTED] Sent: Tue 3/4/2003 3:26 PM To: Tomcat Users List Cc: Subject: Re: Tomcat error Either use the Coyote connector for AJP (the one configured for port 8009) and comment out the Ajp13Connector config or keep using the Ajp13Connector

RE: Tomcat error

2003-03-04 Thread Harry Gehring
-Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: Tue 3/4/2003 4:27 PM To: Tomcat Users List Cc: Subject: RE: Tomcat error The CoyoteConnector is compatible with both mod_jk and jk2. And if you

RE: tomcat error

2002-06-20 Thread Turner, John
Have you restarted or otherwise executed your autoexec.bat file? What platform are you using? The best way to set environment variables is to do so through the Control Panel. On Windows 2000, Control Panel-System-Advanced-Environment Variables. Have you verified that TOMCAT_HOME has a value?

Re: tomcat error

2002-06-20 Thread Yu Ye Zhou
After you change the autoexec.bat files, did you execute it before you start tomcat? If you didn't, your change won't take any effect. --- Halil AKINCI [EMAIL PROTECTED] wrote: Hi all, I'm installed my computer jakarta-tomcat-3.3.1 and changed my Autoexec.bat file

Re: Tomcat error page

2001-09-12 Thread Craig R. McClanahan
On Wed, 12 Sep 2001, Alexandre Victoor wrote: Date: Wed, 12 Sep 2001 16:43:58 +0200 From: Alexandre Victoor [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Tomcat error page Hello again, I would like to know if it is possible to configure tomcat to serve a

RE: tomcat error messages

2001-07-24 Thread Loïc Lefèvre
Hemm the second question is: But what could be the reason(s) for a such error ? -Message d'origine- De : Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Envoyé : lundi 23 juillet 2001 06:28 À : [EMAIL PROTECTED] Objet : Re: tomcat error messages Hi, AFAIK the first null is the parameters

Re: tomcat error messages

2001-07-24 Thread Loïc Lefèvre
:[EMAIL PROTECTED]] Envoyé : mardi 24 juillet 2001 18:56 À : [EMAIL PROTECTED] Objet : RE: tomcat error messages Hemm the second question is: But what could be the reason(s) for a such error ? -Message d'origine- De : Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Envoyé : lundi 23 juillet 2001 06

Re: tomcat error messages

2001-07-23 Thread Pancham Singh
Thanks a lot!!! Even if I pass parameters to the request the first 'null' is still there. Any ideas? Thanks again, Pancham. From: Dmitri Colebatch [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: tomcat error messages Date: Mon, 23 Jul 2001 14:28:16 +1000 Hi

Re: tomcat error messages

2001-07-23 Thread Dmitri Colebatch
to the request the first 'null' is still there. Any ideas? Thanks again, Pancham. From: Dmitri Colebatch [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: tomcat error messages Date: Mon, 23 Jul 2001 14:28:16 +1000 Hi, AFAIK the first null is the parameters

Re: tomcat error messages

2001-07-22 Thread Dmitri Colebatch
Hi, AFAIK the first null is the parameters, and in your case the second is because tomcat was unable to serve the request. tomcat.log will only exist if you configure it as such. open up server.xml and search for tomcat.log, you'll find a comment telling you how to have tomcat output go to the

Re: Tomcat - Error Handler

2000-11-21 Thread Jeff Turner
Doh, was running on 3.2b6. It's fixed in 3.2b8. Sorry for wasting your time. --Jeff On Wed, 22 Nov 2000, Jeff Turner wrote: Hi, I get the same exception when using the JSP error handler after a jsp:include, eg: index.jsp %@ page errorPage="error.jsp" % jsp:include