Re: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-26 Thread Anja Falkner
Hi Remy, the problem with the driver is solved. I have changed catalina.bat (set the Tomcat-CLASSPATH to the original driver-directory) and now the driver is found. Thank you for your help Anja Falkner -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Anja Falkner
Hello list, is there anyone, who has an idea or can explain me the following situation: My JSP-file imports a self-written class named 'Connect'. This class should connect to DB2 with using IBM-app-driver. If I start this application, I get a ClassNotFoundException because of the driver. I

RE: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread sumit . rajan
, January 25, 2002 4:06 PM To: [EMAIL PROTECTED] Subject: Problem with JDBC-Connection to DB2 from Tomcat4.0.1 Hello list, is there anyone, who has an idea or can explain me the following situation: My JSP-file imports a self-written class named 'Connect'. This class should connect to DB2

RE: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Randy Layman
-Original Message- From: Anja Falkner [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 4:06 PM To: [EMAIL PROTECTED] Subject: Problem with JDBC-Connection to DB2 from Tomcat4.0.1 Hello list, is there anyone, who has an idea or can explain me the following

Re: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Ashish kulkarni
hi, COpy the jar file of the JDBC driver, into lib directory of your server or web-inf lib directory of your application, then restart it, tomcat does not look into the system classpath as far as i know, i always copy the jar files in the lib directory of tomcat and all the classes need into the

RE: RE: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Anja Falkner
Hi Randy, I have decided to change catalina.bat and it works!!! Thank you very much for your fast help! Anja -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Micael Padraig Og mac Grene
The answer to this is always the same, the class is not where your application is looking. So, that is the correct answer. Without knowing more about your situation, it is hard to tell what that means. Find out where the application is looking for the driver. The driver is not there. Put

Re: Problem with JDBC-Connection to DB2 from Tomcat4.0.1

2002-01-25 Thread Remy Maucherat
The answer to this is always the same, the class is not where your application is looking. So, that is the correct answer. Without knowing more about your situation, it is hard to tell what that means. Find out where the application is looking for the driver. The driver is not there.