Oh, this is embarrassing! Mark, thanks so much for the hint. The TLD begins with

<taglib xmlns="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/web-jsptaglibrary_2_0.xsd";
        version="2.0">
        <tlib-version>1.0</tlib-version>
        <jsp-version>1.2</jsp-version>

which is obviously not correct. I set tlib-version to 1.2 and
jsp-version to 2.1. This solved it!

Cheers,

Georg




Tag files are always part of tag libraries - whether or not you define
an explicit TLD.

Tag libraries have a default JSP version that is not the same as the
servlet spec version defined in the web app.

Best guess: the default version is a JSP version that doesn't support
the EL you are trying to use. Tomcat recently got a lot stricter about
this in order to fix a handful of EL related bugs.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to