I\'m getting the following error when I try to use the JSTL XML taglib:
/server-side-transform.jsp(51,0)
According to TLD or attribute directive in tag file,
at
Not exactly, you should use
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
to use JSTL 1.1.
Unfortunately the standard.jar files includes many versions of *.tld tag for eg.
so by using
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
you tell the jsp to specifically use JSTL 1.1 which btw fixes the above issue, if this does not work try using
<%@ page isELIgnored="false" %>
which basically tells jsp to evaluate EL.
/srm