Re: Class not found

2005-05-31 Thread Ram Sriram
That didn't work. Is there any configuration in Tomcat that needs to know the location of Classes12.zip? Tim Funk wrote rename classes12.zip to classes12.jar -Tim Ram Sriram wrote: Hi, I am using Oracle JDBC Thin Driver from classes12.zip. My code is not finding the class; I have the

Re: Class not found

2005-05-31 Thread Tim Funk
The file should be in WEB-INF/lib Ram Sriram wrote: That didn't work. Is there any configuration in Tomcat that needs to know the location of Classes12.zip? Tim Funk wrote rename classes12.zip to classes12.jar -Tim Ram Sriram wrote: Hi, I am using Oracle JDBC Thin Driver from

RE: Class not found

2005-05-31 Thread Dale, Matt
Is it in the lib directory of WEB-INF or just in the root of it. You should put it in the lib sub-directory -Original Message- From: Ram Sriram [mailto:[EMAIL PROTECTED] Sent: 31 May 2005 17:52 To: Tomcat Users List Subject: Re: Class not found That didn't work. Is there any

Re: Class not found

2005-05-31 Thread egan0019
You might need to unzip it, instead. On 31 May 2005, Ram Sriram wrote: That didn't work. Is there any configuration in Tomcat that needs to know the location of Classes12.zip? Tim Funk wrote rename classes12.zip to classes12.jar -Tim Ram Sriram wrote: Hi, I am using Oracle

Re: Class not found

2005-05-31 Thread Ram Sriram
Users List Subject: Re: Class not found That didn't work. Is there any configuration in Tomcat that needs to know the location of Classes12.zip? Tim Funk wrote rename classes12.zip to classes12.jar -Tim Ram Sriram wrote: Hi, I am using Oracle JDBC Thin Driver from classes12.zip. My

Re: Class not found

2005-05-31 Thread Ram Sriram
I renamed the zip file to jar and put it in the lib directory and it worked. Now it finds the class. Thanks for the help...Ram Tim Funk wrote: The file should be in

RE: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Shapira, Yoav
Hi, Does your CNFE (by the way, is it actually a CNFE or a NoClassDefFoundError -- I think it's the latter, looking at the stack trace, and the distinction is significant) occur when you've reloaded your app? In other words, if instead of reloading you restart Tomcat each time to deploy a new

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Michael McGrady
Sorry, you are right. NCDFE rather than CNFE. I should be more careful. Usually I am. If I refresh the page, the class is found. I am going to try the reloading. I restarted Tomcat and got the same error. I am using a frameset, by the way. Sometimes one frame of the frameset fails due

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Michael McGrady
Shapira, Yoav wrote: Hi, Does your CNFE (by the way, is it actually a CNFE or a NoClassDefFoundError -- I think it's the latter, looking at the stack trace, and the distinction is significant) occur when you've reloaded your app? In other words, if instead of reloading you restart Tomcat each

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Remy Maucherat
On Tue, 05 Oct 2004 13:10:59 -0700, Michael McGrady [EMAIL PROTECTED] wrote: This is very interesting. My experience is almost the same as the bug. I also use frames. It is NOT always the same frame with me. And, I do not use the ImgTag from Struts but have rolled my own. I think that this

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Michael McGrady
Remy Maucherat wrote: On Tue, 05 Oct 2004 13:10:59 -0700, Michael McGrady [EMAIL PROTECTED] wrote: This is very interesting. My experience is almost the same as the bug. I also use frames. It is NOT always the same frame with me. And, I do not use the ImgTag from Struts but have rolled my

Re: Class Not Found on Occasion but Class Exists and is Usually Found

2004-10-05 Thread Michael McGrady
I also have, by the way, another page which uses the same taglib in a frameset and never has this problem. I really have no idea why this would be. The pages are very, very similar. One always has a problem. The other never does. Michael Michael McGrady wrote: Remy Maucherat wrote: On Tue,

Re: class not found error

2004-07-23 Thread Vamsee Kanakala
Thanks Tim Yoav, you got me started off on my Tomcat journey :) I'm running Win2k + PostgreSQL 7.4.3 (on Cygwin) + Tomcat. Yay! -Vamsee. Vamsee Kanakala wrote: Dear list users, I have a beginner's problem: I'm trying to get a small app which retrieves a bunch of records from database

Re: class not found error

2004-07-22 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/classnotfound.html -Tim Vamsee Kanakala wrote: Dear list users, I have a beginner's problem: I'm trying to get a small app which retrieves a bunch of records from database (postgres) and prints them. I set up the datasources, etc, correctly. I have the

RE: class not found error

2004-07-22 Thread Shapira, Yoav
Hi, You don't need to map movie DB. But what you should do is put both it and your JSP in packages as applicable: http://jakarta.apache.org/tomcat/faq/classnotfound.html. Yoav Shapira Millennium Research Informatics -Original Message- From: Vamsee Kanakala [mailto:[EMAIL PROTECTED]

Re: class not found problem

2004-01-21 Thread Bill Barker
I'm guessing that you are trying to run TC 5.0.x. The o.a.ajp Connector is no longer available for TC 5.x. Only the Coyote Connector is supported. William Sundberg [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I receive the following error when I try to startup Tomcat after

Re: Class Not Found Error for WebApp

2003-08-14 Thread John Turner
Caused by: java.lang.NoClassDefFoundError: NoClassDefFoundError != ClassNotFound The two are different. NoClassDef means that the class that is being found is not the one that is expected, not that the class is not found. This comes up weekly at least, if not more often, try searching the

RE: Class Not Found Error for WebApp

2003-08-14 Thread Shapira, Yoav
Howdy, PersonalMantraMode NoClassDefFoundError is not the same as ClassNotFoundException. Read the docs, search this list's archives. /PersonalMantraMode Yoav Shapira Millennium ChemInformatics -Original Message- From: Vid Bijelic [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14,

Re: Class not found

2003-03-26 Thread Tim Funk
http://tomcatfaq.sourceforge.net/classnotfound.html Odds are servlet.jar is somewhere it shouldn't be. servlet.jar should be in $CATALINA_HOME/common/lib/ (and only there) -Tim Herbert G. Fischer wrote: Hi again, Just after starting Tomcat, I'm getting the following error. I don't know if

Re: Class not found

2003-03-26 Thread Herbert G. Fischer
And why there is no JspServlet on Tomcat 4.1.24's servlet.jar ??? Tim Funk wrote: http://tomcatfaq.sourceforge.net/classnotfound.html Odds are servlet.jar is somewhere it shouldn't be. servlet.jar should be in $CATALINA_HOME/common/lib/ (and only there) -Tim Herbert G. Fischer wrote: Hi

Re: Class not found

2003-03-26 Thread Tim Funk
Oops, too quick in guessing the answer after seeing class not found. org.apache.jasper.servlet.JspServlet is not in servlet.jar. It is in jasper-compiler.jar, which is also commonly found in $CATALINA_HOME/common/lib. But that probably still doesn't matter since I am still guessing servlet.jar

RE: Class not found

2003-03-26 Thread Bodycombe, Andrew
JspServlet is found in jasper-compiler.jar. It should be in $CATALINA_HOME/common/lib Andy -Original Message- From: Herbert G. Fischer [mailto:[EMAIL PROTECTED] Sent: 26 March 2003 14:13 To: Tomcat Users List Subject: Re: Class not found And why there is no JspServlet on Tomcat 4.1.24

Re: Class not found

2003-03-26 Thread Herbert G. Fischer
I've got the error with a clean common and lib dirs... I only have changed things on server.xml and have some files on webapps/context. Tim Funk wrote: Oops, too quick in guessing the answer after seeing class not found. org.apache.jasper.servlet.JspServlet is not in servlet.jar. It is in

Re: Class not found

2003-03-26 Thread Tim Funk
This is gonna sound real dumb but ... what happens if you undo all the changes? -Tim Herbert G. Fischer wrote: I've got the error with a clean common and lib dirs... I only have changed things on server.xml and have some files on webapps/context. (The rest is snipped and can be found at

Re: Class not found

2003-03-26 Thread Herbert G. Fischer
On a clean Tomcat 4.1.24 JDK1.4 instalation, I did not got the error. On the Tomcat already configured, the error appears to not affect my apps since they are working. I think that Tomcat is loading the JspServlet's jar twice, it's possible? I have 2 services configured on Tomcat, maybe this is

Re: Class not found

2003-03-26 Thread Tim Funk
If debugging is set to zero do you get the message? If you don't, it sounds like a spurious debug message. Beyond that - I can't be of much more help. -Tim Herbert G. Fischer wrote: On a clean Tomcat 4.1.24 JDK1.4 instalation, I did not got the error. On the Tomcat already configured, the

Re: class not found in application designed for 3.x, running on 4.1.18

2003-03-13 Thread Jon Wingfield
Try changing the filename from jsafe.zip to jsafe.jar. The classloader used for the lib directories only picks up jar files, not zip files. HTH, Jon Seeling Thomas wrote: Hallo, I am using a commercial application which now has a servlet interface in its latest version (Tivoli Framework 4.1).

RE: class not found in application designed for 3.x, running on 4.1.18

2003-03-13 Thread Seeling Thomas
Hallo, The installation instructions require copying some additional files jcf.jar, jlog.jar, jsafe.zip to tomcat-home/lib. java.lang.NoClassDefFoundError: COM/rsa/jsafe/JSAFE_SecureRandom Try changing the filename from jsafe.zip to jsafe.jar. this solved my problem in no time. Many thanks!

RE: Class not found exception - urgent

2002-05-30 Thread VJ
i tried that one but still that problem is there. if i tried to import that class in jsp file it is ablt to import that means it is able to find out that jar file. still i m searching solution if anyone know please let me know. Thanks --- Shapira, Yoav [EMAIL PROTECTED] wrote: Howdy, Same

RE: Class not found exception - urgent

2002-05-30 Thread VJ
i tried that one but still that problem is there. if i tried to import that class in jsp file it is ablt to import that means it is able to find out that jar file. still i m searching solution if anyone know please let me know. Thanks __ Do You

RE: Class not found exception - urgent

2002-05-28 Thread Shapira, Yoav
Howdy, Same application is working fine in tomcat 3.2.4. i try to keep that jar file in classes and common/classes directory in catalina_home but still JAR files belong in the /lib directories. If the contents of the JAR file are required only by one web application, put in under the

RE: Class not found on import

2000-12-19 Thread Do Phil
Title: RE: Class not found on import In your development environment, you probably need to include the WEF-INF path in your CLASSPATH. You shouldn't have this for starting the server but for compiling your code, you do. Phil -Original Message- From: Matt Becker [mailto:[EMAIL

RE: Class not found on import

2000-12-19 Thread Matt Becker
I should be able to take the exact web app from my Windows machine and transfer it over to my Linux machine without compiling the java code, right? Matt At 02:01 PM 12/19/00, you wrote: In your development environment, you probably need to include the WEF-INF path in your CLASSPATH. You

Re: Class not found on import

2000-12-19 Thread Filip Hanik
: Class not found on import I should be able to take the exact web app from my Windows machine and transfer it over to my Linux machine without compiling the java code, right?MattAt 02:01 PM 12/19/00, you wrote: In your development environment, you probably need to include the WEF

Re: Class not found on import

2000-12-19 Thread Daniel A. Theobald
Hey Matt, Funny I was just thinking of you a couple of days ago when we drove by that Dim-Sum restaurant we saw you in a couple of years ago... how are things going? Are you still in DC? Idon't remember where you were as of reunions daniel Matt Becker wrote: I should be able to take the