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
a String > and not the EmployeeVO which the current iteration of the > employees loop should represent. > > I'm not sure how to get the Tag File to see the var as > EmployeeVO and not a String? > > Thanks again > > > > > > --

Re: JSP2.0 Tag File question

2004-04-05 Thread Harry van Rijn
;m not sure how to get the Tag File to see the var as EmployeeVO and not a String? Thanks again -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Saturday, April 03, 2004 10:42 PM To: Tag Libraries Users List Subject: JSP2.0 Tag File question This is just

Re: JSP2.0 Tag File question

2004-04-04 Thread Rick Reumann
not sure how to get the Tag File to see the var as EmployeeVO and not a String? Thanks again > > -Original Message- > > From: Rick Reumann [mailto:[EMAIL PROTECTED] > > Sent: Saturday, April 03, 2004 10:42 PM > > To: Tag Libraries Users List >

RE: JSP2.0 Tag File question

2004-04-04 Thread Karr, David
List > Subject: JSP2.0 Tag File question > > > This is just for a demo, but I'm trying to pass in collection > into a Tag File. I'm doing something wrong though as I'm getting > > Unable to find a value for "name" in object of class > "j

JSP2.0 Tag File question

2004-04-03 Thread Rick Reumann
This is just for a demo, but I'm trying to pass in collection into a Tag File. I'm doing something wrong though as I'm getting Unable to find a value for "name" in object of class "java.lang.String" using operator "." so, I'm thinking maybe I need to do the following differently when in a Tag Fi