You didn't mention which JSTL version you're using (at least I don't see it in the subject).
I've configured JSTL 1.2 , JSF 1.2 on Tomcat 6.0.x which is built to JSP 2.1 (which has Unified EL - supposed to work with both JSTL and JSF) and Servlet 2.5 spec. And EL evaluates fine so far (no EL bugs encountered). Here's full details of my configuration: JSTL 1.2 JAR was downloaded from : https://maven-repository.dev.java.net/repository/jstl/jars/ I didn't get standard.jar this time (standard.jar is needed with JSTL 1.1) Note that if you are using JSTL 1.1 , you may keep those JAR files (jstl.jar and standard.jar). You don't need JSFJAR files, since you're not using it. Your project's web.xml should conform to Servlet 2.5 spec, so it should be: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee web-app_2_5.xsd" version="2.5"> </web-app> No need to explicitly add TLDs for JSTL taglibs in the above web.xml they are already present in the jstl.jar file. This nice article http://java.sun.com/products/jsp/reference/techart/unifiedEL.html talks about Unified EL and how to migrate to it, incase you do want to migrate to it. -Rashmi ----- Original Message ---- From: Gerald Holl <[EMAIL PROTECTED]> To: Tomcat Users List <users@tomcat.apache.org> Sent: Tuesday, March 20, 2007 4:29:39 AM Subject: Re: Possible JSTL/EL bug in 6.0.10 >faces-config and web.xml are definitely valid. Old jstl jars are not >present. I still have the same behavior ... >Gerald ____________________________________________________________________________________ Finding fabulous fares is fun. Let Yahoo! FareChase search your favorite travel sites to find flight and hotel bargains. http://farechase.yahoo.com/promo-generic-14795097 --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]