RE: Problem connecting to mysql database with Tomcat and JNDI

2003-08-22 Thread Robert S. Jones
, Scott Stewart [Manager, Software Development] [EMAIL PROTECTED] ClearSky Mobile Media, Inc. 56 E. Pine Street Suite 200 Orlando, FL 32801 USA -Original Message- From: Robert S. Jones [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 5:35 PM To: [EMAIL

RE: Problem connecting to mysql database with Tomcat and JNDI

2003-08-22 Thread Robert S. Jones
should have posted the whole server.xml file. That probably would have made the problem obvious to folks more experienced than me. Rob On Fri, 2003-08-22 at 09:00, Robert S. Jones wrote: Ok, I tried that. Same results. Here is my new Context definition. Context path=/db-test docBase=db-test

Problem connecting to mysql database with Tomcat and JNDI

2003-08-21 Thread Robert S. Jones
Folks, I'm having trouble connecting to a mysql database through Tomcat. I'm using Tomcat 5.0.9a with mysql 4.0.14. I have the mysql 3.0.8 JDBC driver in ${TOMCAT_HOME}/common/lib. I'm running RedHat 8.0 with a stock kernel. I've been able to connect to the database without JNDI services.

Tomcat/Jasper JSTL expression problem

2003-07-10 Thread Robert S. Jones
Folks, I'm working on a simple JSP page that opens some files and displays the results. I've pretty much got it working, but I've come across two problems. The first is that Jasper reported that the end attribute of forEach could not accept an expression. I thought it could? That's the

Re: Tomcat/Jasper JSTL expression problem

2003-07-10 Thread Robert S. Jones
So, I figured out the problem. I was using: %@ taglib prefix=c uri=http://java.sun.com/jstl/core; % when I should have been using: %@ taglib prefix=c uri=http://java.sun.com/jstl/core_rt; % Robert Jones On Thu, 2003-07-10 at 09:36, Robert S. Jones wrote: Folks, I'm working on a simple