4 Replies Latest reply on Jun 8, 2004 10:42 AM by morphace

    JSP JSTL Expressions not evaluating.

    trakkasure

      I'm trying to get JSTL Expressions working under JBoss 3.2.4 RC1 using the standard download.
      When below is a simple JSP page that I am trying to write.
      The c:out tag does not evaluate the EL variable. It outputs the explicit value: ${header['User-Agent']}

      The example expression is from a JSP tech article on SUN's java site.

      Am I missing something that I am supposed to do? I know the taglib is being picked up, since the full c:out tag doesn't appear in the HTML source in the browser.

      BEGIN SAMPLE:
      <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
      <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>



      JSTL Test


      <h3>Simple test.</h3>

      <c:out value="${header['User-Agent']}" />


      -- Brandon