John Engilis wrote: > > QUESTION: > I've attempted to use 2 tags that appear as though they were suppose to be > included in the core tld's (c.tld or c-rt.tld) that don't seem to be present > in my current version: > > <c:declare> > <c:expr> > > These are the versions we're currently using: > > TOMCAT 4.1.12 > JSTL (Standard Tag Library) 1.0.2
These two tags existed only when JSTL was in Early Access. They have been deprecated since. <c:declare> --> use <jsp:useBean> instead <c:expr> --> use <c:out> You should get the final version of the JSTL spec at http://java.sun.com/products/jstl. Or better, consider getting a book on the topic. There are excellent ones out there. > These are the url's that referrence these tags: > > http://java.sun.com/webservices/docs/ea2/tutorials/docs/JSTL5.html > http://onjava.com/lpt/a/1600 These papers covered early access releases of JSTL. > Any information regarding this would be greatly appreciated. Also, if you > have any information or know of any resources on doing connection pooling > using taglibs. The JSTL 'sql' tags have been designed to work with DataSource objects. The DataSource objects provide the connection pooling behavior to keep it transparent to a page author. Setting up a DataSource with connection pooling is a task normally handled by a "back-end" developer. You may want to check the DBCP component in the commons project at jakarta (http://jakarta.apache.org/commons/dbcp.html). It provides connection pooling. -- Pierre -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
