Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
24 januari 2007 11:36 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase Make sure you are using web.xml version 2.4. Taras. On 1/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > All of a sudden, my iteration doesn't work anymore. > I want to iterate through an Ar

Re: JSTL toUpperCase

2007-01-24 Thread Bob Arnott
[EMAIL PROTECTED] wrote: So I have to change it to this: http://java.sun.com/dtd/web-app_2_4.dtd"; > Try http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/

RE: JSTL toUpperCase

2007-01-24 Thread bjorn.de.bakker
--Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 11:36 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase Make sure you are using web.xml version 2.4. Taras. On 1/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > All of a s

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
rEach items="${list}" var="person" But when I run my webapp, now I can only see ${person.firstName}, ... instead of the actual values. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 11:10 To: Struts Users Mailing Lis

RE: JSTL toUpperCase

2007-01-24 Thread bjorn.de.bakker
ame}, ... instead of the actual values. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 11:10 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase Ensure you have <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported. JSTL is version 1.1 btw. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 10:52 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase Hi, you should separa

RE: JSTL toUpperCase

2007-01-24 Thread bjorn.de.bakker
ot;${fn:toUpperCase(person.lastName)}": org.apache.taglibs.standard.lang.jstl.parser.ParseException: EL functions are not supported. JSTL is version 1.1 btw. -Original Message- From: Taras Puchko [mailto:[EMAIL PROTECTED] Sent: woensdag 24 januari 2007 10:52 To: Struts Users Mailing List Subject: Re: JSTL toUpperCase

Re: JSTL toUpperCase

2007-01-24 Thread Taras Puchko
Hi, you should separate the namespace from the function name with a colon rather than with a dot: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions"; prefix="fn" %> Taras. On 1/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Seems straight-through, but apparently it isn't. I have