Re: JSP2.0 Tag File question

2004-04-05 Thread Rick Reumann
On Mon, Apr 05, 2004 at 02:50:53PM -0400, Kris Schneider wrote: > What happens with: > > <%@ attribute name="employees" %> > <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> > Employees: ${employees} (${employees.class}) > > ${employee} (${employee.class}) > Employees: [

Re: JSP2.0 Tag File question

2004-04-05 Thread Edsard Vegter
Return Receipt Your Re: JSP2.0 Tag File question document

Re: JSP2.0 Tag File question

2004-04-05 Thread Kris Schneider
What happens with: <%@ attribute name="employees" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> Employees: ${employees} (${employees.class}) ${employee} (${employee.class}) Quoting Rick Reumann <[EMAIL PROTECTED]>: > On Mon, Apr 05, 2004 at 12:04:50PM -0400, Kris Schne

Re: JSP2.0 Tag File question

2004-04-05 Thread Rick Reumann
On Mon, Apr 05, 2004 at 12:04:50PM -0400, Kris Schneider wrote: > Glad that worked. What's the actual implementation type of the Collection? I'm > guessing that the string representation of the Collection contains > comma-separated elements which means will process it as a > collection of string

Re: JSP2.0 Tag File question

2004-04-05 Thread Kris Schneider
Glad that worked. What's the actual implementation type of the Collection? I'm guessing that the string representation of the Collection contains comma-separated elements which means will process it as a collection of string tokens. Quoting Rick Reumann <[EMAIL PROTECTED]>: > On Mon, Apr 05, 200

Re: JSP2.0 Tag File question

2004-04-05 Thread Rick Reumann
On Mon, Apr 05, 2004 at 09:20:16AM -0400, Kris Schneider wrote: > Jumping in late, sorry if I've missed something. If you don't specify a "type" > attribute for an "attribute" directive, it defaults to String. Perhaps: > > <%@ attribute name="employees" type="java.util.Collection" %> > Don'

Re: JSP2.0 Tag File question

2004-04-05 Thread Kris Schneider
Jumping in late, sorry if I've missed something. If you don't specify a "type" attribute for an "attribute" directive, it defaults to String. Perhaps: <%@ attribute name="employees" type="java.util.Collection" %> Quoting Rick Reumann <[EMAIL PROTECTED]>: > On Sun, Apr 04, 2004 at 10:00:28AM -070

Re: JSP2.0 Tag File question

2004-04-05 Thread Harry van Rijn
Rick Reumann wrote: On Sun, Apr 04, 2004 at 10:00:28AM -0700, Karr, David wrote: How many items are in the collection? Four? Show us the class represented by your "employee" object. That is probably the key. Yes four items in this example are in the collection. The only reaso

Re: JSP2.0 Tag File question

2004-04-04 Thread Rick Reumann
On Sun, Apr 04, 2004 at 10:00:28AM -0700, Karr, David wrote: > How many items are in the collection? Four? Show us the class > represented by your "employee" object. That is probably the key. Yes four items in this example are in the collection. The only reason I didn't show the E

RE: JSP2.0 Tag File question

2004-04-04 Thread Karr, David
How many items are in the collection? Four? Show us the class represented by your "employee" object. That is probably the key. > -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 03, 2004 10:42 PM > To: Tag Libraries Users List > Subject: JSP2.0