I am having problems implementing the <c:forEach> JSTL tag.
I am using Jakarta-Struts-1.1-rc2 with Tomcat4
This is the code:
<c:forEach var="clienteDescr" items="${clientes.lixeira}">
<TR><TD width="15%">
<html:multibox name="clienteLixeiraFormBean"
property="codigos">
<c:out value="${clienteDescr.id}"/>
</html:multibox>
</TD><TD>
<c:out value="${clienteDescr.descricao}"/>
</TD></TR>
</c:forEach>
Obs.: "clientes.lixeira" is a key of an attribute in "request" scope.
The problem is the <c:forEach> is doing nothing.
The code inside the block <c:forEach> doesn't work.
Can anyone offer suggestions on where to start looking to solve this
problem.
I have searched in vain for similar problems and solutions.