I'm sure this has been discussed many times, but I'm finding it hard to find a clear and up to date summary of this issue.
In Tomcat 6, using Sun JSF 1.2 RI, the following JSP code:
<c:forEach begin="0" end="10" varStatus="loopStatus">
<c:out value="LoopStatus: ${loopStatus.index}"/>
<h:outputText value="#{loopStatus.index}"/>
</c:forEach>
Prints the index in the "c:out", but not in the "h:outputText".
In JEE 5, I should have the "unified EL", but I'm not sure if that's the key to this.
Is there any way I can get the c:out loop index value into a JSF component?