Re: R: stupid EL evaluation question

2005-10-20 Thread David Delbecq
Ok, i finally found the problem. The doctype of my web.xml was http://java.sun.com/dtd/web-app_2_3.dtd";> which disable all EL in tomcat. Solution was to replace with http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xm

Re: R: stupid EL evaluation question

2005-10-20 Thread Ronald Holshausen
I've been looking at the JSP 2.0 spec, and this might be a bug. BTW, you don't need the taglib declaration in your web.xml, you can just use the URI in your jsp file and the taglib will be loaded from the jstl jars. On 20/10/05, David Delbecq <[EMAIL PROTECTED]> wrote: > Hi Amleto, > > am using t

Re: R: stupid EL evaluation question

2005-10-20 Thread David Delbecq
Hi Amleto, am using tomcat 5.5.7, jstl 1.1.2 my web.xml declaration is as follow. http://java.sun.com/jsp/jstl/core /tld/c.tld More over fact it's Interger not int shouldn't matter, as i said, another webapp which has ${param.mode=='list'} in it's test is working, th