Hi,

2017-01-06 1:38 GMT+02:00 Mark Thomas <ma...@apache.org>:
>
> The proposed Apache Tomcat 8.5.10 release is now available for voting.
>
> The major changes compared to the 8.5.9 release are:
>
> - HTTP/2 fixes and improvements
>
> - Simpler JSP file encoding detector that delegates XML prolog
>   encoding detection to the JRE rather than using a custom XML
>   parser.
>
> - Improve the logic that selects an address to use to unlock the
>   Acceptor to take account of platforms what do not listen on all
>   local addresses when configured with an address of 0.0.0.0 or ::
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-8/v8.5.10/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1111/
> The svn tag is:
> http://svn.apache.org/repos/asf/tomcat/tc8.5.x/tags/TOMCAT_8_5_10/
>
> The proposed 8.5.10 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 8.5.10

I'm observing the exception below:

    [junit] An error occurred at line: 20 in the jsp file:
/bug48nnn/bug48616.jsp
    [junit] Duplicate local variable
_005fjspx_005ftagPool_005fbugs_005fBug48616b_005fnobody_reused
    [junit] 17: <%@ taglib prefix="bugs" uri="http://tomcat.apache.org/bugs";
%>
    [junit] 18: <bugs:Bug48616b />
    [junit] 19: <bugs:Bug46816a>
    [junit] 20:   <bugs:Bug48616b></bugs:Bug48616b>
    [junit] 21: </bugs:Bug46816a>
    [junit]
    [junit]
    [junit] Stacktrace:] with root cause
    [junit]  org.apache.jasper.JasperException: Unable to compile class for
JSP:
    [junit]
    [junit] An error occurred at line: 20 in the jsp file:
/bug48nnn/bug48616.jsp
    [junit] Duplicate local variable
_005fjspx_005ftagPool_005fbugs_005fBug48616b_005fnobody_reused
    [junit] 17: <%@ taglib prefix="bugs" uri="http://tomcat.apache.org/bugs";
%>
    [junit] 18: <bugs:Bug48616b />
    [junit] 19: <bugs:Bug46816a>
    [junit] 20:   <bugs:Bug48616b></bugs:Bug48616b>
    [junit] 21: </bugs:Bug46816a>
    [junit]
    [junit]
    [junit] Stacktrace:
    [junit]     at
org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:103)
    [junit]     at
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:212)
    [junit]     at
org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:457)
    [junit]     at
org.apache.jasper.compiler.Compiler.compile(Compiler.java:377)
    [junit]     at
org.apache.jasper.compiler.Compiler.compile(Compiler.java:349)


I succeeded to modify one of our tests in order to reproduce the issue.


test.entry=org.apache.jasper.compiler.TestScriptingVariabler


Index: bug48616.jsp
===================================================================
--- bug48616.jsp (revision 1777593)
+++ bug48616.jsp (working copy)
@@ -17,5 +17,5 @@
 <%@ taglib prefix="bugs" uri="http://tomcat.apache.org/bugs"; %>
 <bugs:Bug48616b />
 <bugs:Bug46816a>
-  <bugs:Bug48616b />
+  <bugs:Bug48616b></bugs:Bug48616b>
 </bugs:Bug46816a>
\ No newline at end of file



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

Reply via email to