Re: Mixing JSTL 1.0 and JSTL 1.1 expressions on one page

2006-03-09 Thread Michael Jouravlev
Arrgh! That must be it. I forgot to remove JSTL 1.0 libraries from WEB-INF/lib. Seems that I need two different directories configured for Tomcat4 and Tomcat5. Or I can move JSTL 1.0 libraries to common libs in Tomcat4. Thanks! On 3/9/06, Mark Lowe <[EMAIL PROTECTED]> wrote: > Thats a really wier

Re: Mixing JSTL 1.0 and JSTL 1.1 expressions on one page

2006-03-09 Thread Mark Lowe
Thats a really wierd problem you're having.. Try this namspace, i recall they changed at some point.. <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %> If you see that the el isn't being evaluated you can configure this in you web.xml or <%@ page isELIgnored="false" %> What it l

Re: Mixing JSTL 1.0 and JSTL 1.1 expressions on one page

2006-03-09 Thread Michael Jouravlev
I made it work by using RT library: <%@ taglib uri="http://java.sun.com/jstl/core_rt"; prefix="c" %> Why Tomcat treats JSTL expression like this: as runtime expression? I thought that in JSTL 1.0 this was other way around? Do I need to use RT library? On 3/9/06, Michael Jouravlev <[EMAIL PROT

Re: Mixing JSTL 1.0 and JSTL 1.1 expressions on one page

2006-03-09 Thread Michael Jouravlev
No, not resolved... New TLD does not have a lot of tags, and for old URI I get an exception. On 3/9/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > I have been using Tomcat 4 (Web Application 2.3) with JSTL 1.0 for > quite a while. Now I am switching to Tomcat 5. I set webapp version to > 2.4 i

Re: Mixing JSTL 1.0 and JSTL 1.1 expressions on one page - RESOLVED

2006-03-09 Thread Michael Jouravlev
Oops. I had to remove the taglib reference <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> from JSP file. Works now ;-) Michael On 3/9/06, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > I have been using Tomcat 4 (Web Application 2.3) with JSTL 1.0 for > quite a while. Now I am s