Hello,

JSTL is not working on Tomcat 6, the JSTL specific code never gets executed.

Consider the following JSP page fragment:

<c:forEach var="it" items="#{bean.list}">
  <h:inputText id="ipt" value="#{it.name}"/>
</c:forEach>

The list property is a simple java.util.List. A Object[] is not working too.

In the bean the getList() method should be called but this never happens. Thus, the it variable is null.

I use the
- JSTL 1.2 from
  https://maven-repository.dev.java.net/repository/jstl/jars/
- JSF 1.2_03 from https://javaserverfaces.dev.java.net/download.html
- Tomcat 6.0.10

cheers,
Gerald

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to