Re: Cannot connect to database using DataSource

2005-09-14 Thread Sonja Löhr
Hi! For TC 5.5.x, put the name-value-pairs of all parameter elements inside the Resource start tag as attributes. Good luck! Am Mittwoch, den 14.09.2005, 16:30 +0800 schrieb Michael Lai: I have a MySQL database in which I created a database named, javatest, and I am using Tomcat 5.5.9. I

RE: cannot connect a sqlserver

2004-12-16 Thread Robert Taylor
When you restore a backup using SQLServer, you must delete and re-add the database users for that database. It's deceiving, because when you restore the database, and look at the users in Enterprise Manager, they are still there and you have no problem querying the database using Query Analyzer.

Re: Cannot connect to remote server

2004-10-19 Thread Antony Paul
Which version of Java you are using. Tomcat 5.5 requires JDK 5. Or you need to download an extra package from jakarta. rgds Antony Paul On Wed, 20 Oct 2004 01:11:34 +1000, Robert Mark Bram [EMAIL PROTECTED] wrote: Hi All! I am using RH9 with Tomcat 5.5.3 I have installed Tomcat as a

RE: cannot connect

2003-01-14 Thread Faine, Mark
-Original Message- From: Brzezinski, Paul J [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 7:21 PM To: Tomcat Users List Subject: Re: cannot connect Faine, Mark wrote: Apache 2.0.43 mod_jk2 2.0.0 Tomcat 4.0.6 Can't get socket to work, I get this error message

RE: cannot connect

2003-01-14 Thread Brzezinski, Paul J
: -Original Message- : From: Faine, Mark [mailto:[EMAIL PROTECTED]] : Sent: Tuesday, January 14, 2003 8:34 AM : To: 'Tomcat Users List' : Subject: RE: cannot connect : : : : : -Original Message- : From: Brzezinski, Paul J [mailto:[EMAIL PROTECTED]] : Sent: Monday, January

Re: cannot connect

2003-01-13 Thread Brzezinski, Paul J
Faine, Mark wrote: Apache 2.0.43 mod_jk2 2.0.0 Tomcat 4.0.6 Can't get socket to work, I get this error message: Is this the log from apache or tomcat? [Mon Jan 13 14:43:21 2003] [notice] Apache/2.0.43 (Unix) mod_ssl/2.0.43 OpenSSL/0.9.6g DAV/2 mod_jk2/2.0.0 configured -- resuming normal

Re: Cannot connect Servlet/JSP running in Tomcat to MySQL Database

2001-12-06 Thread David Smith
Is your Tomcat using the security manager?? That would explain the error message. If so, you'll have to allow access to the datasource in catalina.policy. Otherwise it should work. --David On Wednesday 05 December 2001 05:19 pm, you wrote: Hi, I am unable to connect a servlet or jsp

Re: Cannot connect Servlet/JSP running in Tomcat to MySQL Database

2001-12-05 Thread August Detlefsen
Try using the 2 argument DriverManager.getConnection method: DriverManager.getConnection(String connectString, Properties connectProperties); Where: connectString doesn't include the ?user=rootpassword= connectProperties is a java.util.Properties with elements user and password