[ANN] Apache Tomcat 8.5.31 available

2018-05-04 Thread Mark Thomas
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.5.31. Tomcat 8.x users should be using 8.5.x releases in preference to 8.0.x releases. Apache Tomcat 8 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language,

svn commit: r1830933 - in /tomcat/site/trunk: ./ docs/ xdocs/

2018-05-04 Thread markt
Author: markt Date: Fri May 4 19:02:02 2018 New Revision: 1830933 URL: http://svn.apache.org/viewvc?rev=1830933=rev Log: Update for 8.5.31 release Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/docs/index.html

svn commit: r1830932 - in /tomcat/site/trunk/docs/tomcat-8.5-doc: ./ api/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache/catalina/authenticator/

2018-05-04 Thread markt
Author: markt Date: Fri May 4 19:00:47 2018 New Revision: 1830932 URL: http://svn.apache.org/viewvc?rev=1830932=rev Log: Update docs for 8.5.31 release [This commit notification would consist of 66 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]

svn commit: r1830930 - /tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

2018-05-04 Thread markt
Author: markt Date: Fri May 4 18:43:03 2018 New Revision: 1830930 URL: http://svn.apache.org/viewvc?rev=1830930=rev Log: Update changelog. Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL:

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED

svn commit: r1830929 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/startup/ java/org/apache/tomcat/util/compat/ res/checkstyle/

2018-05-04 Thread markt
Author: markt Date: Fri May 4 18:38:28 2018 New Revision: 1830929 URL: http://svn.apache.org/viewvc?rev=1830929=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 Enable Tomcat to run on Java 6 with Common Annotations 1.0. Document requirement to use endorsed mechanism to use

[GitHub] tomcat issue #108: Improve undeployment in parallel deployment scenario

2018-05-04 Thread koraktor
Github user koraktor commented on the issue: https://github.com/apache/tomcat/pull/108 I added support for version suffixes and rebased this on `trunk`. Maybe you want to have another look. --- - To unsubscribe,

[ANN] Apache Tomcat 9.0.8 available

2018-05-04 Thread Mark Thomas
The Apache Tomcat team announces the immediate availability of Apache Tomcat 9.0.8. Apache Tomcat 9 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language, Java WebSocket and JASPIC technologies. Apache Tomcat 9.0.8 is a bugfix and

svn commit: r1830925 - in /tomcat/site/trunk/docs/tomcat-9.0-doc: ./ api/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache/catalina/authenticator/

2018-05-04 Thread markt
Author: markt Date: Fri May 4 17:55:26 2018 New Revision: 1830925 URL: http://svn.apache.org/viewvc?rev=1830925=rev Log: Update Tomcat docs for 9.0.8 [This commit notification would consist of 68 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]

svn commit: r1830926 - in /tomcat/site/trunk: ./ docs/ xdocs/

2018-05-04 Thread markt
Author: markt Date: Fri May 4 17:55:58 2018 New Revision: 1830926 URL: http://svn.apache.org/viewvc?rev=1830926=rev Log: Updates for 9.0.8 release excluding docs Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/docs/download-90.html

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #8 from Konstantin Kolinko --- (In reply to Mark Thomas from comment #5) I pondered about the Endorsed Standards Override Mechanism as well. I think this means instructing users (via RUNNING.txt or via

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #7 from Mark Thomas --- Looking at the (lack of) dependencies between the annotations, it should be safe to load the Java SE provided ones from Java SE and the remainder from Tomcat's JAR without risk of conflict.

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #6 from Konstantin Kolinko --- (In reply to Konstantin Kolinko from comment #2) > (In reply to Konstantin Kolinko from comment #1) > > Comparing the classes in Java 6 and the classes in annotations-api.jar

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #5 from Mark Thomas --- The expected way to enable Common Annotations 1.1 when running on Java 6 is via the Endorsed Standards Override Mechanism. I looked at various other ways to do this but they all broke for

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #4 from Mark Thomas --- For reference: Java EE 6 requires Common Annotations 1.1 Java SE 6 ships with Common Annotations 1.0 Still thinking about how this might be fixed. -- You are receiving this mail

[Bug 62351] static resource

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62351 Mark Thomas changed: What|Removed |Added Resolution|--- |INVALID

svn commit: r26703 - /dev/tomcat/tomcat-7/v7.0.87/

2018-05-04 Thread violetagg
Author: violetagg Date: Fri May 4 13:43:03 2018 New Revision: 26703 Log: Tomcat 7.0.87 did not pass the vote Removed: dev/tomcat/tomcat-7/v7.0.87/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional

Re: [CANCEL][VOTE] Release Apache Tomcat 7.0.87

2018-05-04 Thread Violeta Georgieva
2018-04-28 14:26 GMT-04:00 Violeta Georgieva : > > The proposed Apache Tomcat 7.0.87 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.87/ > The Maven staging repo is: >

svn commit: r1830918 - /tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

2018-05-04 Thread violetagg
Author: violetagg Date: Fri May 4 13:33:05 2018 New Revision: 1830918 URL: http://svn.apache.org/viewvc?rev=1830918=rev Log: 7.0.87 vote does not pass Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL:

Re: [VOTE] Release Apache Tomcat 7.0.87

2018-05-04 Thread Violeta Georgieva
Hi, 2018-05-04 9:13 GMT-04:00 Konstantin Kolinko : > > 2018-04-28 21:26 GMT+03:00 Violeta Georgieva : > > The proposed Apache Tomcat 7.0.87 release is now available for voting. > > > > It can be obtained from: > >

Re: [VOTE] Release Apache Tomcat 7.0.87

2018-05-04 Thread Konstantin Kolinko
2018-04-28 21:26 GMT+03:00 Violeta Georgieva : > The proposed Apache Tomcat 7.0.87 release is now available for voting. > > It can be obtained from: > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.87/ > The Maven staging repo is: >

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #3 from Konstantin Kolinko --- Looking into WebAnnotationSet class, the problematic code is triggered only when - Annotation scanning has been performed - It found a @Resource annotation and tries to process

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 --- Comment #2 from Konstantin Kolinko --- (In reply to Konstantin Kolinko from comment #1) > Comparing the classes in Java 6 and the classes in annotations-api.jar of > Tomcat, a difference is that Tomcat has classes

[Bug 62353] 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 Konstantin Kolinko changed: What|Removed |Added OS||All ---

[Bug 62353] New: 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62353 Bug ID: 62353 Summary: 7.0.87: java.lang.NoSuchMethodError: javax.annotation.Resource.lookup()Ljava/lang/String Product: Tomcat 7 Version: trunk Hardware: PC

[Bug 62350] AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE", "read"

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62350 --- Comment #4 from Konstantin Kolinko --- Created attachment 35910 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35910=edit localhost_access_log.2018-05-04.txt Access Log. -- You are receiving this mail

[Bug 62350] AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE", "read"

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62350 --- Comment #3 from Konstantin Kolinko --- Created attachment 35909 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35909=edit localhost.2018-05-04.log The localhost log for the issue. -- You are receiving

Re: [VOTE] Release Apache Tomcat 8.5.31

2018-05-04 Thread Konstantin Kolinko
2018-04-27 23:47 GMT+03:00 Mark Thomas : > The proposed Apache Tomcat 8.5.31 release is now available for voting. > > The major changes compared to the 8.5.30 release are: > > - Implement configuration options to work-around specification > non-compliant user agents (including

[Bug 62350] AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE", "read"

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62350 --- Comment #2 from Konstantin Kolinko --- (In reply to Remy Maucherat from comment #1) Good question. Looking into org.apache.jasper.security.SecurityClassLoad class in 8.5, it preloads some runtime classes, but

[Bug 43925] org.apache.jasper.runtime.BodyContentImpl causing huge memory allocations

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=43925 --- Comment #18 from Konstantin Kolinko --- (Noting the versions where this fix was applied, 3 months ago) The fix is available in the following versions and onwards: 9.0.4, 8.5.27, 8.0.49, 7.0.84. See also bug

Re: [Git migration] Old git repositories

2018-05-04 Thread Konstantin Kolinko
2018-04-30 23:48 GMT+03:00 Mark Thomas : > The current plan is to merge all of the existing branches into a single > Git repo. This will be mirrored at GitHub under apache/tomcat. This is > currently used for the svn mirror for trunk only. > > This raises the question what to do

[Bug 62351] New: static resource

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62351 Bug ID: 62351 Summary: static resource Product: Tomcat 9 Version: 9.0.7 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: JASPIC

[Bug 62350] AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE", "read"

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62350 Remy Maucherat changed: What|Removed |Added OS||All --- Comment #1

svn commit: r1830899 - /tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java

2018-05-04 Thread remm
Author: remm Date: Fri May 4 09:10:36 2018 New Revision: 1830899 URL: http://svn.apache.org/viewvc?rev=1830899=rev Log: Reorder code, no actual change. Modified: tomcat/trunk/java/org/apache/tomcat/util/net/Nio2Endpoint.java Modified:

[Bug 62350] New: AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE", "read"

2018-05-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62350 Bug ID: 62350 Summary: AccessControlException: "org.apache.jasper.runtime.BodyContentImpl.BUFFER_SIZE ", "read" Product: Tomcat 8 Version: 8.5.31

svn commit: r1830891 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/tomcat/util/net/SecureNio2Channel.java webapps/docs/changelog.xml

2018-05-04 Thread remm
Author: remm Date: Fri May 4 08:58:35 2018 New Revision: 1830891 URL: http://svn.apache.org/viewvc?rev=1830891=rev Log: Sometimes Future write will cause an ISE with NIO2 (timeout or cancel on a channel). Not a very good idea IMO. Make things more consistent with SSL close. Modified: