Re: Standard's source not matching debug lines

2003-08-22 Thread K.C. Baltz
Just a guess, but the debuggers are probably running with some JRE version that you aren't expecting. Try a java -version K.C. Serge Knystautas wrote: I was trying to use 2 different debuggers (Jdebug and jswat) to step through JSTL 1.0.3 implementation, and the line numbers for the javax.*

Standard's source not matching debug lines

2003-08-22 Thread Serge Knystautas
I was trying to use 2 different debuggers (Jdebug and jswat) to step through JSTL 1.0.3 implementation, and the line numbers for the javax.* classes are not lining up. Things seem fine for the org.apache.* stuff. Anyone else seen this? -- Serge Knystautas President Lokitech >> software . strat

RE: problems with install

2003-08-22 Thread Karr, David
You'll need to use a J2EE 1.3 compatible container to get this to work. > -Original Message- > From: e [mailto:[EMAIL PROTECTED] > Sent: Friday, August 22, 2003 11:10 AM > To: [EMAIL PROTECTED] > Subject: problems with install > > > > I've downloaded the standard taglibs from > http:/

Standard Taglib - Correct usage of sql:param in sql:query

2003-08-22 Thread Stephen Letschin
Is it possible to use a tag to replace a ? in the FROM section of a ? I know I can use it to replace a ? in the WHERE section of the query but I was considering using it for some dynamic table lookups. I can obviously use a to write the table names, but I was wondering whether a could be used fo

Standard Taglib - Catching a SQL:DataSource

2003-08-22 Thread Stephen Letschin
I am attempting to use a c:catch around a sql:setDataSource with a JDNI defined dataSource to ensure connectivity with the database exists. It appears however that the c:catch is not working in this instance. The code looks something like: I know the sql:setDataSource works fine but in my

Re: problems with install

2003-08-22 Thread Felipe Leme
Hi, That's because you are using a JSP 1.1 container (and JSTL requires JSP 1.2). > If I don't declare the taglibs in my web.xml file, I get: > > Fatal error: http://java.sun.com/jstl/core: Failed to find taglib for an > absolue URI 'http://java.sun.com/jstl/core'. JSP 1.1 containers doesn't re

RE: problems with install

2003-08-22 Thread Thomas Martin
My definition look like below. Make sure you have them in the correct place in web.xml. http://java.sun.com/jstl/core /WEB-INF/tld/c.tld http://java.sun.com/jstl/fmt /WEB-INF/tld/fmt.tld -Original Message- From: e [mailto:[EMAIL PROTECTED] Sent:

problems with install

2003-08-22 Thread e
I've downloaded the standard taglibs from http://www.apache.org/dist/jakarta/taglibs/standard/ I am having issues with getting them to work. I am using the following in my jsps: <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> If I don't declare the taglibs in my web.xml file, I ge