Re: jstl doesn't work

2005-10-22 Thread Christian Taylor
Hi Michael, Did you include the necessary taglib directives at the beginning of your JSP? For example, to use the core taglib as you are doing: [EMAIL PROTECTED] prefix=c uri=http://java.sun.com/jsp/jstl/core% This needs to be included at the top of any JSP using the taglib. If you already

Re: jstl doesn't work

2005-10-22 Thread michael Muttai
Yes, I did. Jstl doesn't work if I use servlet specification 2.3. Once I change it to servlet specification 2.4 in web.xml, it works. I use Struts 1.2.4 with jstl 1.1. Michael From: Christian Taylor [EMAIL PROTECTED] Reply-To: Tag Libraries Users List taglibs-user@jakarta.apache.org

jstl doesn't work

2005-10-21 Thread michael Muttai
Why do I get ${customers.firstName} when I use the following codes in a jsp file? c:forEach var=customers items=${requestScope.customers} tr tdc:out value=${customers.firstName}//td ... /tr /c:forEach I use JBoss 4.0.3. I include jstl.jar and standard.jar under web-inf/lib and some *.tld