Bug 26164 - Two of jstl 1.1 example jsps do not translate
Summary: Two of jstl 1.1 example jsps do not translate
Status: RESOLVED FIXED
Alias: None
Product: Taglibs
Classification: Unclassified
Component: Standard Taglib (show other bugs)
Version: 1.1
Hardware: All All
: P3 normal (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-15 12:46 UTC by Richard Backhouse
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Richard Backhouse 2004-01-15 12:46:01 UTC
The standard-examples war packaged with JSTL 1.1 contains two jsps that will not
translate in a JSP 2.0 container

/import/LocalQueryString.jsp(11,8) "${param:name}" contains invalid expression(s)

Need to change 
<c:out value="${param:name}"/><br> 
to
<c:out value="${param.name}"/><br>

and 
<c:out value="${param:email}"/>
to
<c:out value="${param.email}"/>


org.apache.jasper.JasperException: /xml/Filter.jsp(11,0) Unable to load tag
handler class "org.apache.taglibs.standard.extra.spath.SPathTag" for tag "ex:SPath"

This custom tag is not found in the war in either WEB-INF/classes or in any jar
in WEB-INF/lib
Comment 1 Pierre Delisle 2004-01-15 20:41:57 UTC
LocalQueryString.jsp was not used anywhere. I've removed it from the source tree.
As for /xml/Filter.jsp, this is a duplicate of 25638.