Hi Daniel
Please tell us which container you are using
JSTL 1.1 require JSP 2.0 + servlet 2.4

AFAIK the only ones that actually implement those specs are:
Tomcat 5
SunOne 8
Jboss 4

If you are using other containers (e.g. Tomcat 4x) you need to use JSTL 1.0,
that only require JSP 1.2 + servlet 2.3

PS: anyways ensure that the URI you use in web.xml is the same you declare
in your page

Andrea

-----Messaggio originale-----
Da: Daniel Perry [mailto:[EMAIL PROTECTED] 
Inviato: luned́ 17 maggio 2004 15.50
A: Struts User List
Oggetto: JSTL 1.1 EL not working :(

I've tried to use JSTL with my web app, and it's not working!
I downloaded jstl 1.1, and copied jstl.jar, and standard.jar to WEB-INF/lib.
I put the f.tld, fmt.tld, fn.tld in WEB-INF/.

In my web.xml i've got:
  <taglib>
    <taglib-uri>/WEB-INF/c.tld</taglib-uri>
    <taglib-location>/WEB-INF/c.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/WEB-INF/fn.tld</taglib-uri>
    <taglib-location>/WEB-INF/fn.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/WEB-INF/fmt.tld</taglib-uri>
    <taglib-location>/WEB-INF/fmt.tld</taglib-location>
  </taglib>

If i try and use c:out, it doesnt work!

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core";  prefix="c" %>
<c:out value="${1+1}"/>

gives:
${1+1}

Any idea what's going on?
It looks like the taglib is working fine, but not using el!

Any ideas?

Daniel.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to