All the jstl tags which do not involve passing back a value(using tei) are working, but whenever I use a tag like <c:forEach var="abc">...<%=abc%></c:forEach>
i am getting an error abc cannot be resolved.
<c:forEach var="i" begin="0" end="<%=len%>">
<%str+=" Parameter type= " + (String)(tArray[i]) + " Parameter Value= "+ pArray[i];
logger.info(str);%>
</c:forEach>
Generates:
**
An error occurred at line: 54 in the jsp file: /jsp/testutility/JMX/invoke.jsp i cannot be resolved
**