My understanding is that JSTL (including the expression language (EL)) is fully supported by Tomcat 5+, which ships with current versions of JBoss. I'm using JSTL and EL under JBoss 3.2.6 and 4.0.0.
I did have a problem initially with JBoss (an older version, maybe 3.2.3) finding the JSTL .tld files. I fixed it by adding the following to the end of my web.xml file: <!-- JSTL Tag Library Descriptors --> | <taglib> | <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> | <taglib-location>/WEB-INF/jstl/c.tld</taglib-location> | </taglib> | <taglib> | <taglib-uri>http://java.sun.com/jsp/jstl/xml</taglib-uri> | <taglib-location>/WEB-INF/jstl/x.tld</taglib-location> | </taglib> | <taglib> | <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri> | <taglib-location>/WEB-INF/jstl/fmt.tld</taglib-location> | </taglib> | <taglib> | <taglib-uri>http://java.sun.com/jsp/jstl/sql</taglib-uri> | <taglib-location>/WEB-INF/jstl/sql.tld</taglib-location> | </taglib> | <taglib> | <taglib-uri>http://java.sun.com/jsp/jstl/functions</taglib-uri> | <taglib-location>/WEB-INF/jstl/fn.tld</taglib-location> | </taglib> | And I have those 5 .tld files in my WAR file in /WEB-INF/jstl/ as indicated above. Also note that I am using the web.xml 2.4 spec version, not sure if this makes any difference. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3856373#3856373 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3856373 ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user
