Re: forEach => Exception javax/servlet/jsp/jstl/core/LoopTagSupport

2003-08-27 Thread Kris Schneider
Not really sure why it's not working for you, but the following works just fine with Standard 1.0.3 on Tomcat 4.1.24: <%@ page contentType="text/plain" %> <%@ page import="java.util.*" %> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %> <% Object[] testData = { "0", "1", "2" }; List

Re: Using JSTL in Dreamweaver MX

2003-08-27 Thread Vinay
I am also trying to know if there is such a feature is provided in dreamweaver, that would be really helpful - Original Message - From: "Brian Menke" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" <[EMAIL PROTECTED]> Sent: Wednesday, August 13, 2003 3:11 PM Subject: RE: Using JSTL in

forEach => Exception javax/servlet/jsp/jstl/core/LoopTagSupport

2003-08-27 Thread Thilo Schwidurski
Hi, This... ...works fine (with stock.test is of class ArrayList). This... , ...and this... ... results in: javax.servlet.ServletException: javax/servlet/jsp/jstl/core/LoopTagSupport So it seems that the forEach tag is kind of "broken". Does anybody have an idea what I am doing