Bug 26164

Summary: Two of jstl 1.1 example jsps do not translate
Product: Taglibs Reporter: Richard Backhouse <backhous>
Component: Standard TaglibAssignee: Tomcat Developers Mailing List <dev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 1.1   
Target Milestone: ---   
Hardware: All   
OS: All   

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.