[Bug 58605] Provide value for request.getProtocol() for HTTP/2 connections
https://bz.apache.org/bugzilla/show_bug.cgi?id=58605 --- Comment #2 from Konstantin Kolinko --- By the way, HTTP/2 FAQ: https://http2.github.io/faq/#is-it-http20-or-http2 "Is it HTTP/2.0 or HTTP/2?" -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 57136] EL Parser escaping dollar sign not ${ or ${...}
https://bz.apache.org/bugzilla/show_bug.cgi?id=57136 --- Comment #31 from Konstantin Kolinko --- Created attachment 33282 --> https://bz.apache.org/bugzilla/attachment.cgi?id=33282&action=edit test.war - Sample web application demonstrating two variants of EL escaping in attributes of custom tags Sample web application to demonstrate two variants of EL escaping in attributes of a custom tag. One of them is expected to work, other is expected to fail (with a compilation failure). This is used to test what is the actual behaviour. It uses EL expression from Comment 24. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: On escaping of EL in attributes (BZ 57136)
2015-11-09 17:35 GMT+03:00 Konstantin Kolinko : > 2015-11-06 15:12 GMT+03:00 Mark Thomas : >> On 06/11/2015 11:47, Christopher Schultz wrote: >>> On 11/5/15 4:34 AM, Mark Thomas wrote: On 05/11/2015 08:48, Mark Thomas wrote: > > <...> > At this point, I don't see a clear argument one way or the other. I've looked through the open JSP spec issues: https://java.net/jira/browse/JSP_SPEC_PUBLIC and I don't see anything for this. I do see a lot of very old issues that don't appear to have been looked at for some time. Given the lack of clarity of the which behaviour is correct, I think we have little choice but to make this optional and that we should get this done before the next 8.0.x release. I intend to start working on that in trunk today. >>> > > <...> > >> If we did have the TCK we could challenge it again (on the grounds the >> spec was never updated so surely that must mean the spec is right and >> the TCK is wrong) >> >>> On the other hand, nobody ready the TCK... only the spec. >> >> Indeed. >> >>> So most users will expect form 2. >> >> If they read the spec carefully enough (and to be fair it took me >> several days of reading and re-reading the relevant bits to get to the >> point I was happy that I understood what it meant) they should expect >> form 1. >> > > > If I were in the footwear of somebody who implements a web application > that has to run on all web containers implementing the specification, > my position will be: > > All I would care is that all web containers implement this part of > specification in the same way. In this case I can "write once, run > everywhere", which is usually expected of Java. > > If this is enforced not through the text of the document, but through > the TCK, it is a pity (and a shame on spec leader), but it solves my > problem. > > > It is unlikely that some test were removed from TCK unless spec leader > officially allows undefined behaviour across different > implementations. As such, testing this example in an alternate > implementation (e.g. RI) will make a guess on what behaviour is > expected here. (Maybe somebody on users list would like to do > testing). > > > That aside, > as I mention in BZ 57136, form 2 (double escaping) provides better > historical compatibility with pre-EL use of tag libraries (JSTL 1.0 / > JSP 1.2 version of EL). > > form 1 (single escaping) is easier to read and write and provides > uniformity across using EL in template text and EL in tags. > > > Syntax hiliting in Eclipse IDE (4.4.2 Luna SR2) breaks at current > /tomcat-7.0.x/test/webapp-3.0/el-method.jsp (form 1). I have not yet > upgraded to current Mars 4.5[.1] to test it there. I attached sample web application to the issue, https://bz.apache.org/bugzilla/show_bug.cgi?id=57136#c31 Testing with Glassfish 4.1.1, it also expects double escaping. I am not a user of Glassfish, so I do not know yet what configuration options are there if this feature is configurable. === My steps: 1. Follow https://glassfish.java.net/download.html and download glassfish-4.1.1-web.zip 2. After unzipping GF, copy test.war into glassfish4/glassfish/domains/domain1/autodeploy/ 3. Start it cd glassfish4/bin asadmin start-domain 4. Open the page in browser http://localhost:8080/test/ Page with double escaped variant works. Page with no double escaping fails: org.apache.jasper.JasperException: /test1.jsp(27,66) PWC6031: Unterminated
svn commit: r1715146 - /tomcat/trunk/webapps/docs/changelog.xml
Author: markt Date: Thu Nov 19 10:28:24 2015 New Revision: 1715146 URL: http://svn.apache.org/viewvc?rev=1715146&view=rev Log: Add 9.0.0.M1 release date Modified: tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1715146&r1=1715145&r2=1715146&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Nov 19 10:28:24 2015 @@ -44,11 +44,7 @@ They eventually become mixed with the numbered issues. (I.e., numbered issues do not "pop up" wrt. others). --> - - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715148 - in /tomcat/trunk: java/org/apache/catalina/core/StandardService.java java/org/apache/catalina/mapper/MapperListener.java webapps/docs/changelog.xml
Author: markt Date: Thu Nov 19 10:32:05 2015 New Revision: 1715148 URL: http://svn.apache.org/viewvc?rev=1715148&view=rev Log: Refactor to simplify code and reduce opportunity for error Modified: tomcat/trunk/java/org/apache/catalina/core/StandardService.java tomcat/trunk/java/org/apache/catalina/mapper/MapperListener.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/core/StandardService.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardService.java?rev=1715148&r1=1715147&r2=1715148&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/StandardService.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardService.java Thu Nov 19 10:32:05 2015 @@ -105,8 +105,7 @@ public class StandardService extends Lif /** * Mapper listener. */ -protected final MapperListener mapperListener = -new MapperListener(mapper, this); +protected final MapperListener mapperListener = new MapperListener(this); // - Properties Modified: tomcat/trunk/java/org/apache/catalina/mapper/MapperListener.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/mapper/MapperListener.java?rev=1715148&r1=1715147&r2=1715148&view=diff == --- tomcat/trunk/java/org/apache/catalina/mapper/MapperListener.java (original) +++ tomcat/trunk/java/org/apache/catalina/mapper/MapperListener.java Thu Nov 19 10:32:05 2015 @@ -81,12 +81,11 @@ public class MapperListener extends Life /** * Create mapper listener. * - * @param mapper The mapper instance this listener will update * @param service The service this listener is associated with */ -public MapperListener(Mapper mapper, Service service) { -this.mapper = mapper; +public MapperListener(Service service) { this.service = service; +this.mapper = service.getMapper(); } Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1715148&r1=1715147&r2=1715148&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Nov 19 10:32:05 2015 @@ -44,6 +44,17 @@ They eventually become mixed with the numbered issues. (I.e., numbered issues do not "pop up" wrt. others). --> + + + + +Refactor creation of MapperListener to ensure that the +Mapper used is the Mapper associated with the +Service for which the listener was created. (markt) + + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58624] Websocket send blocks indefinitely in FutureToSendHandler
https://bz.apache.org/bugzilla/show_bug.cgi?id=58624 --- Comment #5 from Barry Coughlan --- The race condition I was talking about was incorrect, as the if (!close) in endMessage() takes care of it. Also the exceptions are logged because the executor is called with execute() instead of submit(). So I'm back to square one :) -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715156 - in /tomcat/site/trunk: build.properties.default build.xml
Author: markt Date: Thu Nov 19 11:02:15 2015 New Revision: 1715156 URL: http://svn.apache.org/viewvc?rev=1715156&view=rev Log: Add the Tomcat 9 docs to the build Modified: tomcat/site/trunk/build.properties.default tomcat/site/trunk/build.xml Modified: tomcat/site/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1715156&r1=1715155&r2=1715156&view=diff == --- tomcat/site/trunk/build.properties.default (original) +++ tomcat/site/trunk/build.properties.default Thu Nov 19 11:02:15 2015 @@ -39,7 +39,7 @@ tomcat.loc=http://www.apache.org/dist/to tomcat60=6.0.43 tomcat70=7.0.65 tomcat80=8.0.28 - +tomcat90=9.0.0.M1 # - Download destination - tomcat-site-docs.home=${base.path}/tomcat-site-docs/ @@ -53,3 +53,6 @@ tomcat70.home=${tomcat-site-docs.home}/$ tomcat80.loc=${tomcat.loc}/tomcat-8/v${tomcat80}/bin/apache-tomcat-${tomcat80}-fulldocs.tar.gz tomcat80.home=${tomcat-site-docs.home}/${tomcat80} + +tomcat90.loc=${tomcat.loc}/tomcat-9/v${tomcat90}/bin/apache-tomcat-${tomcat90}-fulldocs.tar.gz +tomcat90.home=${tomcat-site-docs.home}/${tomcat90} \ No newline at end of file Modified: tomcat/site/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1715156&r1=1715155&r2=1715156&view=diff == --- tomcat/site/trunk/build.xml (original) +++ tomcat/site/trunk/build.xml Thu Nov 19 11:02:15 2015 @@ -152,6 +152,28 @@ + + + + + + + + + + + + + + + + + + + + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715160 - in /tomcat/site/trunk/docs/tomcat-9.0-doc: ./ api/ api/org/ api/org/apache/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache
Author: markt Date: Thu Nov 19 11:27:05 2015 New Revision: 1715160 URL: http://svn.apache.org/viewvc?rev=1715160&view=rev Log: Add the 9.0.x docs ready for the 9.0.0.M1 release annoucement [This commit notification would consist of 763 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715165 - in /tomcat/site/trunk/xdocs: download-90.cgi download-90.xml security-9.xml security.xml
Author: markt Date: Thu Nov 19 12:24:45 2015 New Revision: 1715165 URL: http://svn.apache.org/viewvc?rev=1715165&view=rev Log: Add the download and security pages for 9.0.x Added: tomcat/site/trunk/xdocs/download-90.cgi (with props) tomcat/site/trunk/xdocs/download-90.xml (with props) tomcat/site/trunk/xdocs/security-9.xml (with props) Modified: tomcat/site/trunk/xdocs/security.xml Added: tomcat/site/trunk/xdocs/download-90.cgi URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-90.cgi?rev=1715165&view=auto == --- tomcat/site/trunk/xdocs/download-90.cgi (added) +++ tomcat/site/trunk/xdocs/download-90.cgi Thu Nov 19 12:24:45 2015 @@ -0,0 +1,6 @@ +#!/bin/sh +# Wrapper script around mirrors.cgi script +# (we must change to that directory in order for python to pick up the +# python includes correctly) +cd /www/www.apache.org/dyn/mirrors +/www/www.apache.org/dyn/mirrors/mirrors.cgi $* Propchange: tomcat/site/trunk/xdocs/download-90.cgi -- svn:eol-style = native Propchange: tomcat/site/trunk/xdocs/download-90.cgi -- svn:executable = * Added: tomcat/site/trunk/xdocs/download-90.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-90.xml?rev=1715165&view=auto == --- tomcat/site/trunk/xdocs/download-90.xml (added) +++ tomcat/site/trunk/xdocs/download-90.xml Thu Nov 19 12:24:45 2015 @@ -0,0 +1,208 @@ + + + +Apache Tomcat 9 Downloads + + + + +Welcome to the Apache Tomcat™ 9.x download page. This page provides +download links for obtaining the latest version of Tomcat 9.0.x, as well as +links to the archives of older releases. + + + + + + +[define v]9.0.0.M1[end] +https://www.apache.org/dist/tomcat/tomcat-9/KEYS";>KEYS | +[v] | +Browse | +http://archive.apache.org/dist/tomcat/tomcat-9";>Archives + + + + + + +You must +https://www.apache.org/info/verification.html";>verify the +integrity of the downloaded files. We provide OpenPGP signatures for every +release file. This signature should be matched against the +https://www.apache.org/dist/tomcat/tomcat-9/KEYS";>KEYS file +which contains the OpenPGP keys of Tomcat's Release Managers. We also +provide MD5 and SHA-1 checksums for every +release file. After you download the file, you should calculate a +checksum for your download, and make sure it is the same as ours. + + + + + +You are currently using [preferred]. If you + encounter a problem with this mirror, please select another + mirror. If all mirrors are failing, there are backup + mirrors (at the end of the mirrors list) that should be + available.[if-any logo][end] + Other mirrors: + [if-any http] + [for http][http][end] + [end] + [if-any ftp] + [for ftp][ftp][end] + [end] + [if-any backup] + [for backup][backup] (backup)[end] + [end] + + + + + + + + + + Please see the + README + file for packaging information. It explains what every distribution contains. + + + + +Core: + + +zip +(https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].zip.sha1";>sha1) + + +tar.gz +(https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].tar.gz.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].tar.gz.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].tar.gz.sha1";>sha1) + + +32-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-windows-x86.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-windows-x86.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-windows-x86.zip.sha1";>sha1) + + +64-bit Windows zip +(https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-windows-x64.zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-windows-x64.zip.md5";>md5, +https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v]-w
svn commit: r1715167 - in /tomcat/site/trunk/docs: download-90.cgi download-90.html security-9.html security.html
Author: markt Date: Thu Nov 19 12:27:46 2015 New Revision: 1715167 URL: http://svn.apache.org/viewvc?rev=1715167&view=rev Log: Grr. Forgot the generated versions. Add the download and security pages for 9.0.x Added: tomcat/site/trunk/docs/download-90.cgi (with props) tomcat/site/trunk/docs/download-90.html (with props) tomcat/site/trunk/docs/security-9.html (with props) Modified: tomcat/site/trunk/docs/security.html Added: tomcat/site/trunk/docs/download-90.cgi URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-90.cgi?rev=1715167&view=auto == --- tomcat/site/trunk/docs/download-90.cgi (added) +++ tomcat/site/trunk/docs/download-90.cgi Thu Nov 19 12:27:46 2015 @@ -0,0 +1,6 @@ +#!/bin/sh +# Wrapper script around mirrors.cgi script +# (we must change to that directory in order for python to pick up the +# python includes correctly) +cd /www/www.apache.org/dyn/mirrors +/www/www.apache.org/dyn/mirrors/mirrors.cgi $* Propchange: tomcat/site/trunk/docs/download-90.cgi -- svn:eol-style = native Added: tomcat/site/trunk/docs/download-90.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-90.html?rev=1715167&view=auto == --- tomcat/site/trunk/docs/download-90.html (added) +++ tomcat/site/trunk/docs/download-90.html Thu Nov 19 12:27:46 2015 @@ -0,0 +1,474 @@ + + + + + +Apache Tomcat - Apache Tomcat 9 Downloads + + + + + + + + +http://tomcat.apache.org/";> + + + +http://www.apache.org/"; target="_blank"> + +Apache Tomcat + + +https://www.google.com/search"; method="get"> +Search + + + + + + + + + + + + + + +Apache Tomcat + + +Home + + +Taglibs + + +Maven Plugin + + + + +Download + + +Which version? + + +Tomcat 8.0 + + +Tomcat 7.0 + + +Tomcat 6.0 + + +Tomcat Connectors + + +Tomcat Native + + +Taglibs + + +http://archive.apache.org/dist/tomcat/";>Archives + + + + +Documentation + + +Tomcat 8.0 + + +Tomcat 7.0 + + +Tomcat 6.0 + + +Tomcat Connectors + + +Tomcat Native + + +http://wiki.apache.org/tomcat/FrontPage";>Wiki + + +Migration Guide + + + + +Problems? + + +Security Reports + + +Find help + + +http://wiki.apache.org/tomcat/FAQ";>FAQ + + +Mailing Lists + + +Bug Database + + +IRC + + + + +Get Involved + + +Overview + + +SVN Repositories + + +Buildbot + + +https://reviews.apache.org/groups/tomcat/";>Reviewboard + + +Tools + + + + +Media + + +http://blogs.apache.org/tomcat/";>Blog + + +http://twitter.com/theapachetomcat";>Twitter + + + + +Misc + + +Who We Are + + +Heritage + + +http://www.apache.org";>Apache Home + + +Resources + + +Contact + + +Legal + + +http://www.apache.org/foundation/sponsorship.html";>Sponsorship + + +http://www.apache.org/foundation/thanks.html";>Thanks + + + + + + + + +Content +Tomcat 9 Downloads + + +Welcome to the Apache Tomcat™ 9.x download page. This page provides +download links for obtaining the latest version of Tomcat 9.0.x, as well as +links to the archives of older releases. + + + +Quick Navigation + + +[define v]9.0.0.M1[end] +https://www.apache.org/dist/tomcat/tomcat-9/KEYS";>KEYS | +[v] | +Browse | +http://archive.apache.org/dist/tomcat/tomcat-9";>Archives + + +Release Integrity + + +You must +https://www.apache.org/info/verification.html";>verify the +integrity of the downloaded files. We provide OpenPGP signatures for every +release file. This signature should be matched against the +https://www.apache.org/dist/tomcat/tomcat-9/KEYS";>KEYS file +which contains the OpenPGP keys of Tomcat's Release Managers. We also +provide MD5 and SHA-1 checksums for every +release file. After you download the file, you should calculate a +checksum for your download, and make sure it is the same as ours. + + + +Mirrors + + + +You are currently using [preferred]. If you + encounter a problem with this mirror, please select another + mirror. If all mirrors are failing, there are backup + mirrors (at the end of the mirrors list) that should be + available.[if-any logo][end] + + + Other mirrors: + [if-any http] + [for http][http][end] + [end] + [if-any ftp] + [for ftp][ftp][end] + [end] + [if-any backup] + [for backup][backup] (backup)[end] + [end] + + + + + + + +[v] + + + + Please see the + README + file for packaging information. It explains what every distribution contains. + + + + +Binary Distributions + + + + +Core: + + + + +zip +(https://www.apache.org/dist/tomcat/tomcat-9/v[v]/bin/apache-tomcat-[v].zip.asc";>pgp, +https://www.apache.org/dist/tomcat/tomcat-9/v[
svn commit: r1715168 - in /tomcat/trunk/res: welcome.bin.html welcome.main.html
Author: markt Date: Thu Nov 19 12:29:17 2015 New Revision: 1715168 URL: http://svn.apache.org/viewvc?rev=1715168&view=rev Log: Remove more Itanium references Modified: tomcat/trunk/res/welcome.bin.html tomcat/trunk/res/welcome.main.html Modified: tomcat/trunk/res/welcome.bin.html URL: http://svn.apache.org/viewvc/tomcat/trunk/res/welcome.bin.html?rev=1715168&r1=1715167&r2=1715168&view=diff == --- tomcat/trunk/res/welcome.bin.html (original) +++ tomcat/trunk/res/welcome.bin.html Thu Nov 19 12:29:17 2015 @@ -64,10 +64,6 @@ RELEASE-NOTES and the RUNNING.txt file i 64-bit Windows specific distribution that includes the Windows service wrapper and the compiled APR/native library for use with 64-bit JVMs on x64 Windows platforms. - apache-tomcat-[version]-windows-i64.zip -64-bit Windows specific distribution that includes the Windows service -wrapper and the compiled APR/native library for use with 64-bit JVMs on -Itanium 64-bit Windows platforms. apache-tomcat-[version]-deployer.zip or .tar.gz The standalone http://tomcat.apache.org/tomcat-@VERSION_MAJOR_MINOR@-doc/deployer-howto.html";> Modified: tomcat/trunk/res/welcome.main.html URL: http://svn.apache.org/viewvc/tomcat/trunk/res/welcome.main.html?rev=1715168&r1=1715167&r2=1715168&view=diff == --- tomcat/trunk/res/welcome.main.html (original) +++ tomcat/trunk/res/welcome.main.html Thu Nov 19 12:29:17 2015 @@ -64,10 +64,6 @@ RELEASE-NOTES and the RUNNING.txt file i 64-bit Windows specific distribution that includes the Windows service wrapper and the compiled APR/native library for use with 64-bit JVMs on x64 Windows platforms. - apache-tomcat-[version]-windows-i64.zip -64-bit Windows specific distribution that includes the Windows service -wrapper and the compiled APR/native library for use with 64-bit JVMs on -Itanium 64-bit Windows platforms. apache-tomcat-[version]-deployer.zip or .tar.gz The standalone http://tomcat.apache.org/tomcat-@VERSION_MAJOR_MINOR@-doc/deployer-howto.html";> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r11240 - in /release/tomcat/tomcat-9/v9.0.0.M1: README.html bin/README.html
Author: markt Date: Thu Nov 19 12:30:16 2015 New Revision: 11240 Log: Remove Itanium references Modified: release/tomcat/tomcat-9/v9.0.0.M1/README.html release/tomcat/tomcat-9/v9.0.0.M1/bin/README.html Modified: release/tomcat/tomcat-9/v9.0.0.M1/README.html == --- release/tomcat/tomcat-9/v9.0.0.M1/README.html (original) +++ release/tomcat/tomcat-9/v9.0.0.M1/README.html Thu Nov 19 12:30:16 2015 @@ -64,10 +64,6 @@ RELEASE-NOTES and the RUNNING.txt file i 64-bit Windows specific distribution that includes the Windows service wrapper and the compiled APR/native library for use with 64-bit JVMs on x64 Windows platforms. - apache-tomcat-[version]-windows-i64.zip -64-bit Windows specific distribution that includes the Windows service -wrapper and the compiled APR/native library for use with 64-bit JVMs on -Itanium 64-bit Windows platforms. apache-tomcat-[version]-deployer.zip or .tar.gz The standalone http://tomcat.apache.org/tomcat-9.0-doc/deployer-howto.html";> Modified: release/tomcat/tomcat-9/v9.0.0.M1/bin/README.html == --- release/tomcat/tomcat-9/v9.0.0.M1/bin/README.html (original) +++ release/tomcat/tomcat-9/v9.0.0.M1/bin/README.html Thu Nov 19 12:30:16 2015 @@ -64,10 +64,6 @@ RELEASE-NOTES and the RUNNING.txt file i 64-bit Windows specific distribution that includes the Windows service wrapper and the compiled APR/native library for use with 64-bit JVMs on x64 Windows platforms. - apache-tomcat-[version]-windows-i64.zip -64-bit Windows specific distribution that includes the Windows service -wrapper and the compiled APR/native library for use with 64-bit JVMs on -Itanium 64-bit Windows platforms. apache-tomcat-[version]-deployer.zip or .tar.gz The standalone http://tomcat.apache.org/tomcat-9.0-doc/deployer-howto.html";> - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715170 - in /tomcat: native/trunk/xdocs/miscellaneous/ site/trunk/docs/ site/trunk/xdocs/ site/trunk/xdocs/stylesheets/
Author: markt Date: Thu Nov 19 12:42:36 2015 New Revision: 1715170 URL: http://svn.apache.org/viewvc?rev=1715170&view=rev Log: Add the 9.0.0.M1 announcement and the 9.0.x links to the navigation bar Modified: tomcat/native/trunk/xdocs/miscellaneous/changelog.xml tomcat/site/trunk/docs/bugreport.html tomcat/site/trunk/docs/ci.html tomcat/site/trunk/docs/contact.html tomcat/site/trunk/docs/download-60.html tomcat/site/trunk/docs/download-70.html tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/docs/download-90.html tomcat/site/trunk/docs/download-connectors.html tomcat/site/trunk/docs/download-native.html tomcat/site/trunk/docs/download-taglibs.html tomcat/site/trunk/docs/findhelp.html tomcat/site/trunk/docs/getinvolved.html tomcat/site/trunk/docs/heritage.html tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/irc.html tomcat/site/trunk/docs/legal.html tomcat/site/trunk/docs/lists.html tomcat/site/trunk/docs/maven-plugin.html tomcat/site/trunk/docs/migration-6.html tomcat/site/trunk/docs/migration-7.html tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/docs/migration.html tomcat/site/trunk/docs/oldnews-2010.html tomcat/site/trunk/docs/oldnews-2011.html tomcat/site/trunk/docs/oldnews-2012.html tomcat/site/trunk/docs/oldnews-2013.html tomcat/site/trunk/docs/oldnews-2014.html tomcat/site/trunk/docs/oldnews.html tomcat/site/trunk/docs/presentations.html tomcat/site/trunk/docs/resources.html tomcat/site/trunk/docs/security-3.html tomcat/site/trunk/docs/security-4.html tomcat/site/trunk/docs/security-5.html tomcat/site/trunk/docs/security-6.html tomcat/site/trunk/docs/security-7.html tomcat/site/trunk/docs/security-8.html tomcat/site/trunk/docs/security-9.html tomcat/site/trunk/docs/security-impact.html tomcat/site/trunk/docs/security-jk.html tomcat/site/trunk/docs/security-native.html tomcat/site/trunk/docs/security-taglibs.html tomcat/site/trunk/docs/security.html tomcat/site/trunk/docs/sitemap-main.xml tomcat/site/trunk/docs/svn.html tomcat/site/trunk/docs/taglibs.html tomcat/site/trunk/docs/tomcat-55-eol.html tomcat/site/trunk/docs/tomcat-60-eol.html tomcat/site/trunk/docs/tools.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/docs/whoweare.html tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/migration-9.xml tomcat/site/trunk/xdocs/stylesheets/project.xml tomcat/site/trunk/xdocs/whichversion.xml Modified: tomcat/native/trunk/xdocs/miscellaneous/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/native/trunk/xdocs/miscellaneous/changelog.xml?rev=1715170&r1=1715169&r2=1715170&view=diff == --- tomcat/native/trunk/xdocs/miscellaneous/changelog.xml (original) +++ tomcat/native/trunk/xdocs/miscellaneous/changelog.xml Thu Nov 19 12:42:36 2015 @@ -34,30 +34,6 @@ This is the Changelog for Tomcat Native 1.2. - - - - Remove Java classes that do not have C implementation code - for their native methods in the current library. They were - used for NPN support which is superseded by ALPN support - in the current code. (kkolinko) - - - Fix typo in declaration of a stub method used when the library is - compiled without OpenSSL support. (kkolinko) - - - Fix the signature of the implementation of the native SSL method - newSSL() in the case when OPENSSL is not available. (rjung) - - - Fix the signature of the implementation of the native SSLSocket - method getInfoB() to return jbyteArray instead of jobject. - This is consistent with what it actually returns and how - the native Java method is declared. (rjung) - - - Modified: tomcat/site/trunk/docs/bugreport.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1715170&r1=1715169&r2=1715170&view=diff == --- tomcat/site/trunk/docs/bugreport.html (original) +++ tomcat/site/trunk/docs/bugreport.html Thu Nov 19 12:42:36 2015 @@ -58,6 +58,9 @@ Which version? +Tomcat 9.0 + + Tomcat 8.0 @@ -84,6 +87,9 @@ Documentation +Tomcat 9.0 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/ci.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/ci.html?rev=1715170&r1=1715169&r2=1715170&view=diff == --- tomcat/site/trunk/docs/ci.html (original) +++ tomcat/site/trunk/docs/ci.html Thu Nov 19 12:42:36 2015 @@ -57,6 +57,9 @@ Which version? +Tomcat 9.0 + + Tomcat 8.0 @@ -83,6 +86,9 @@ Documentation +Tomcat 9.0 + + Tomcat 8.0 Modified: tomcat/site/trunk/docs/contact.ht
svn commit: r1715171 - /tomcat/site/trunk/README.txt
Author: kkolinko Date: Thu Nov 19 13:01:49 2015 New Revision: 1715171 URL: http://svn.apache.org/viewvc?rev=1715171&view=rev Log: Add Tomcat 9 Modified: tomcat/site/trunk/README.txt Modified: tomcat/site/trunk/README.txt URL: http://svn.apache.org/viewvc/tomcat/site/trunk/README.txt?rev=1715171&r1=1715170&r2=1715171&view=diff == --- tomcat/site/trunk/README.txt (original) +++ tomcat/site/trunk/README.txt Thu Nov 19 13:01:49 2015 @@ -61,7 +61,7 @@ reflected on the live tomcat.apache.org immediately, so go to http://tomcat.apache.org/ and have fun. -To update the documentation for Tomcat 6.0.x, 7.0.x or 8.0.x: +To update the documentation for Tomcat 6.0.x, 7.0.x, 8.0.x or 9.0.x: == 1. If you are using the "sparse" checkout feature, make sure that @@ -74,6 +74,7 @@ To update the documentation for Tomcat 6 svn up --set-depth infinity docs/tomcat-6.0-doc svn up --set-depth infinity docs/tomcat-7.0-doc svn up --set-depth infinity docs/tomcat-8.0-doc + svn up --set-depth infinity docs/tomcat-9.0-doc 2. Create build.properties file if you have not done so yet and set "base.path" property in it. E.g. @@ -95,6 +96,7 @@ To update the documentation for Tomcat 6 ant release-6 ant release-7 ant release-8 + ant release-9 5. Check the changes with "svn status" command. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat 9.0.0.M1 available
The Apache Tomcat team announces the immediate availability of Apache Tomcat 9.0.0.M1. Apache Tomcat 9 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language and Java WebSocket technologies. Apache Tomcat 9.0.0.M1 is the first milestone release of the 9.0.x branch and has been made to provide users with early access to the new features in Apache Tomcat 9.0.x so that they may provide feedback.The notable changes compared to 8.0.x include: - Adding support for HTTP/2, and TLS virtual hosting - An implementation of the current draft of the Servlet 4.0 specification - The BIO connectors, support for Windows Itanium and support for Comet have been removed Please refer to the change log for the complete list of changes: http://tomcat.apache.org/tomcat-9.0-doc/changelog.html The first in the new series of short Tomcat webinars will cover a quick start guide to HTTP/2. Details have been posted to the users mailing list: - http://markmail.org/message/suiwwo57fpasyw2g - 10.00 UTC - http://markmail.org/message/xwxq6etj2scjmllp - 20.00 UTC Downloads: http://tomcat.apache.org/download-90.cgi Migration guides from Apache Tomcat 5.5.x, 6.0.x, 7.0.x and 8.0.x: http://tomcat.apache.org/migration.html Enjoy! - The Apache Tomcat team - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715178 - /tomcat/site/trunk/docs/download-90.cgi
Author: kkolinko Date: Thu Nov 19 13:37:47 2015 New Revision: 1715178 URL: http://svn.apache.org/viewvc?rev=1715178&view=rev Log: I remember that Infrastructure team required the "svn:executable" flag on download cgi scripts. (For some reason it currently works even without that flag... Still I am setting the flag, to be consistent). Modified: tomcat/site/trunk/docs/download-90.cgi (props changed) Propchange: tomcat/site/trunk/docs/download-90.cgi -- svn:executable = * - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Apache Tomcat YouTube channel
Hi, In readiness for the Webinar recordings, I have created the Apache Tomcat YouTube channel. If any committer wants to help manage that channel, just let me know and I'll add you (via you asf e-mail so this needs to be linked to your Google account). Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Apache Tomcat YouTube channel
Hi Mark, Please add me. Martin On Thu, Nov 19, 2015 at 2:44 PM, Mark Thomas wrote: > Hi, > > In readiness for the Webinar recordings, I have created the Apache > Tomcat YouTube channel. > > If any committer wants to help manage that channel, just let me know and > I'll add you (via you asf e-mail so this needs to be linked to your > Google account). > > Mark > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > >
svn commit: r1715180 - in /tomcat/site/trunk: docs/svn.html xdocs/svn.xml
Author: kkolinko Date: Thu Nov 19 13:52:39 2015 New Revision: 1715180 URL: http://svn.apache.org/viewvc?rev=1715180&view=rev Log: Document that /trunk is 9.0.x. Remove CTR / RTC wording (as was noted by huxing.zhx in [VOTE] 6.0.x CTR thread). All code is now CTR. Modified: tomcat/site/trunk/docs/svn.html tomcat/site/trunk/xdocs/svn.xml Modified: tomcat/site/trunk/docs/svn.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/svn.html?rev=1715180&r1=1715179&r2=1715180&view=diff == --- tomcat/site/trunk/docs/svn.html (original) +++ tomcat/site/trunk/docs/svn.html Thu Nov 19 13:52:39 2015 @@ -333,7 +333,7 @@ http://svn.apache.org/repos/asf/tomcathttp://svn.apache.org/repos/asf/tomcat/tc6.0.x";> /tc6.0.x/ -The stable 6.0.x release branch. See +The stable Tomcat 6.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk";> /tc6.0.x/trunk/. @@ -343,7 +343,7 @@ http://svn.apache.org/repos/asf/tomcathttp://svn.apache.org/repos/asf/tomcat/tc7.0.x";> /tc7.0.x/ -The stable 7.0.x release branch. See +The stable Tomcat 7.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc7.0.x/trunk";> /tc7.0.x/trunk/. @@ -353,7 +353,7 @@ http://svn.apache.org/repos/asf/tomcathttp://svn.apache.org/repos/asf/tomcat/tc8.0.x";> /tc8.0.x/ -The stable 8.0.x release branch. See +The stable Tomcat 8.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc8.0.x/trunk";> /tc8.0.x/trunk/. @@ -363,9 +363,9 @@ http://svn.apache.org/repos/asf/tomcathttp://svn.apache.org/repos/asf/tomcat/trunk";> /trunk/ -The primary development branch. Patches are committed here -using Commit-then-Review and then voted on for porting to the -release branches using Review-then-Commit. +The primary development branch. Tomcat 9.0.x. +Changes are first implemented here, then backported to other +branches. Modified: tomcat/site/trunk/xdocs/svn.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/svn.xml?rev=1715180&r1=1715179&r2=1715180&view=diff == --- tomcat/site/trunk/xdocs/svn.xml (original) +++ tomcat/site/trunk/xdocs/svn.xml Thu Nov 19 13:52:39 2015 @@ -90,30 +90,30 @@ http://svn.apache.org/repos/asf/tomcat http://svn.apache.org/repos/asf/tomcat/tc6.0.x";> /tc6.0.x/ -The stable 6.0.x release branch. See +The stable Tomcat 6.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk";> /tc6.0.x/trunk/. http://svn.apache.org/repos/asf/tomcat/tc7.0.x";> /tc7.0.x/ -The stable 7.0.x release branch. See +The stable Tomcat 7.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc7.0.x/trunk";> /tc7.0.x/trunk/. http://svn.apache.org/repos/asf/tomcat/tc8.0.x";> /tc8.0.x/ -The stable 8.0.x release branch. See +The stable Tomcat 8.0.x release branch. See http://svn.apache.org/repos/asf/tomcat/tc8.0.x/trunk";> /tc8.0.x/trunk/. http://svn.apache.org/repos/asf/tomcat/trunk";> /trunk/ -The primary development branch. Patches are committed here -using Commit-then-Review and then voted on for porting to the -release branches using Review-then-Commit. +The primary development branch. Tomcat 9.0.x. +Changes are first implemented here, then backported to other +branches. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715181 - in /tomcat/site/trunk: docs/bugreport.html xdocs/bugreport.xml
Author: kkolinko Date: Thu Nov 19 13:54:02 2015 New Revision: 1715181 URL: http://svn.apache.org/viewvc?rev=1715181&view=rev Log: Link to Tomcat 9 changelog. Modified: tomcat/site/trunk/docs/bugreport.html tomcat/site/trunk/xdocs/bugreport.xml Modified: tomcat/site/trunk/docs/bugreport.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1715181&r1=1715180&r2=1715181&view=diff == --- tomcat/site/trunk/docs/bugreport.html (original) +++ tomcat/site/trunk/docs/bugreport.html Thu Nov 19 13:54:02 2015 @@ -584,7 +584,9 @@ problem you are having before reporting Tomcat 9.0 (trunk) - not released + +http://tomcat.apache.org/tomcat-9.0-doc/changelog.html";>changelog.html + http://svn.apache.org/repos/asf/tomcat/trunk/webapps/docs/changelog.xml";>changelog.xml Modified: tomcat/site/trunk/xdocs/bugreport.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/bugreport.xml?rev=1715181&r1=1715180&r2=1715181&view=diff == --- tomcat/site/trunk/xdocs/bugreport.xml (original) +++ tomcat/site/trunk/xdocs/bugreport.xml Thu Nov 19 13:54:02 2015 @@ -206,7 +206,9 @@ problem you are having before reporting Tomcat 9.0 (trunk) - not released + +http://tomcat.apache.org/tomcat-9.0-doc/changelog.html";>changelog.html + http://svn.apache.org/repos/asf/tomcat/trunk/webapps/docs/changelog.xml";>changelog.xml - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Apache Tomcat YouTube channel
On 19/11/2015 13:51, Martin Grigorov wrote: > Hi Mark, > > Please add me. Invitation sent. Mark > > Martin > > On Thu, Nov 19, 2015 at 2:44 PM, Mark Thomas wrote: > >> Hi, >> >> In readiness for the Webinar recordings, I have created the Apache >> Tomcat YouTube channel. >> >> If any committer wants to help manage that channel, just let me know and >> I'll add you (via you asf e-mail so this needs to be linked to your >> Google account). >> >> Mark >> >> - >> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org >> For additional commands, e-mail: dev-h...@tomcat.apache.org >> >> > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: Apache Tomcat YouTube channel
On 19/11/2015 13:44, Mark Thomas wrote: > Hi, > > In readiness for the Webinar recordings, I have created the Apache > Tomcat YouTube channel. > > If any committer wants to help manage that channel, just let me know and > I'll add you (via you asf e-mail so this needs to be linked to your > Google account). Learning as I go here. I'm going to add the PMC list as a manager as well (a/c details will be in the PMC private repo) and then I'll make that account the channel owner. That should make it possible to link our YouTube and Twitter accounts. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715188 - /tomcat/trunk/webapps/docs/jasper-howto.xml
Author: markt Date: Thu Nov 19 14:39:08 2015 New Revision: 1715188 URL: http://svn.apache.org/viewvc?rev=1715188&view=rev Log: Correct default Modified: tomcat/trunk/webapps/docs/jasper-howto.xml Modified: tomcat/trunk/webapps/docs/jasper-howto.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/jasper-howto.xml?rev=1715188&r1=1715187&r2=1715188&view=diff == --- tomcat/trunk/webapps/docs/jasper-howto.xml (original) +++ tomcat/trunk/webapps/docs/jasper-howto.xml Thu Nov 19 14:39:08 2015 @@ -206,7 +206,7 @@ characters be strictly applied? tr quoteAttributeEL - When EL is used in JSP attribute values, should the rules for quoting of attributes described in JSP.1.6 be applied to the expression? true or false, default -true. +false. The Java compiler from Eclipse JDT in included as the default compiler. It is - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715189 - /tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml
Author: markt Date: Thu Nov 19 14:39:41 2015 New Revision: 1715189 URL: http://svn.apache.org/viewvc?rev=1715189&view=rev Log: Correct default Modified: tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml Modified: tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml?rev=1715189&r1=1715188&r2=1715189&view=diff == --- tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml (original) +++ tomcat/tc8.0.x/trunk/webapps/docs/jasper-howto.xml Thu Nov 19 14:39:41 2015 @@ -208,7 +208,7 @@ property. quoteAttributeEL - When EL is used in JSP attribute values, should the rules for quoting of attributes described in JSP.1.6 be applied to the expression? true or false, default -true. +false. The Java compiler from Eclipse JDT in included as the default compiler. It is - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 57773] performance problems when using scopeless optional attributes
https://bz.apache.org/bugzilla/show_bug.cgi?id=57773 --- Comment #7 from Mark Thomas --- (In reply to Woonsan Ko from comment #5) > How about introducing a whitelist filter attribute in context configuration? > e.g, elStaticAccessFilter="^[a-z].*$". There is no easy way to configure this since the problematic code is in a specification defined class and we can not change the API. It might be possible to (ab)use the ELContext.putContext() method to set some special value but even then we'd have to make sure every ELContext created had the special value set on it. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58624] Websocket send blocks indefinitely in FutureToSendHandler
https://bz.apache.org/bugzilla/show_bug.cgi?id=58624 Mark Thomas changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment #6 from Mark Thomas --- Thanks for all the work on this. It is worth updating to the latest 8.0.x in case one of the I/O or concurrency updates has improved this. I'm switching this to NEEDINFO. Ideally we need a test case but that is not essential. If you believe you have found a code path that could trigger this let us know and we'll take a look. As long as we can confirm the code path is theoretically possible, we'll be happy to fix it. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] New: Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 Bug ID: 58626 Summary: Tomcat does not start at boot time due to SIGHUP Product: Tomcat 6 Version: 6.0.44 Hardware: HP OS: HP-UX Status: NEW Severity: normal Priority: P2 Component: Native:Integration Assignee: dev@tomcat.apache.org Reporter: 1983-01...@gmx.net When hooking Tomcat into the init.d of HP-UX, Tomcat does not come up at system start time. After an in-depth analysis of the startup scripts and HP-provided packages, we have noticed that the HP-UX init sends a SIGHUP to the startup script and child processes. Java does exit immediately. One simple solution to this is to use nohup(1). Therefore, I'd like to propose to change the catalina.sh for "start" only which turns: "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS $CATALINA_OPTS into $JAVA_WRAPPER "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS $CATALINA_OPTS Not quoting JAVA_WRAPPER is intentional because those who do not need a wrapper, the script won't fail on the empty argument. Patches can be provided for Tomcat 6 and up. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #1 from Michael Osipov <1983-01...@gmx.net> --- A reference for this problem can be found here: https://groups.google.com/forum/#!topic/comp.sys.hp.hpux/HWBQQNEXfEE -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
buildbot failure in ASF Buildbot on tomcat-8-trunk
The Buildbot has detected a new failure on builder tomcat-8-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-8-trunk/builds/279 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-8-commit' triggered this build Build Source Stamp: [branch tomcat/tc8.0.x/trunk] 1715189 Blamelist: markt BUILD FAILED: failed compile_1 Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #2 from Christopher Schultz --- I'm +0 on this idea, but failing to quote is going to be a problem. Instead of using an unquoted value, you should use if/else to either run the command with the wrapper, or run it without the wrapper. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #3 from Mark Thomas --- Given the length of time other HP-UX users have been running Tomcat without this issue this looks more like an HP-UX configuration / usage error than something that needs to be fixed in the Tomcat scripts. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715206 - in /tomcat/trunk: java/org/apache/catalina/ java/org/apache/catalina/core/ java/org/apache/catalina/mapper/ java/org/apache/catalina/servlets/ java/org/apache/catalina/startup/
Author: markt Date: Thu Nov 19 16:17:38 2015 New Revision: 1715206 URL: http://svn.apache.org/viewvc?rev=1715206&view=rev Log: Move the functionality that provides redirects for context roots and directories where a trailing / is added from the Mapper to the DefaultServlet. This enables such requests to be processed by any configured Valves and Filters before the redirect is made. This behaviour is configurable via the mapperContextRootRedirectEnabled and mapperDirectoryRedirectEnabled attributes of the Context which may be used to restore the previous behaviour. Modified: tomcat/trunk/java/org/apache/catalina/Context.java tomcat/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/trunk/java/org/apache/catalina/core/mbeans-descriptors.xml tomcat/trunk/java/org/apache/catalina/mapper/Mapper.java tomcat/trunk/java/org/apache/catalina/servlets/DefaultServlet.java tomcat/trunk/java/org/apache/catalina/startup/FailedContext.java tomcat/trunk/test/org/apache/catalina/core/TesterContext.java tomcat/trunk/test/org/apache/catalina/mapper/TestMapperWebapps.java tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java tomcat/trunk/test/org/apache/catalina/valves/rewrite/TestRewriteValve.java tomcat/trunk/webapps/docs/changelog.xml tomcat/trunk/webapps/docs/config/context.xml Modified: tomcat/trunk/java/org/apache/catalina/Context.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Context.java?rev=1715206&r1=1715205&r2=1715206&view=diff == --- tomcat/trunk/java/org/apache/catalina/Context.java (original) +++ tomcat/trunk/java/org/apache/catalina/Context.java Thu Nov 19 16:17:38 2015 @@ -1714,4 +1714,44 @@ public interface Context extends Contain * false} */ public boolean getValidateClientProvidedNewSessionId(); + +/** + * If enabled, requests for a web application context root will be + * redirected (adding a trailing slash) by the Mapper. This is more + * efficient but has the side effect of confirming that the context path is + * valid. + * + * @param mapperContextRootRedirectEnabled Should the redirects be enabled? + */ +public void setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled); + +/** + * Determines if requests for a web application context root will be + * redirected (adding a trailing slash) by the Mapper. This is more + * efficient but has the side effect of confirming that the context path is + * valid. + * + * @return {@code true} if the Mapper level redirect is enabled for this + * Context. + */ +public boolean getMapperContextRootRedirectEnabled(); + +/** + * If enabled, requests for a directory will be redirected (adding a + * trailing slash) by the Mapper. This is more efficient but has the + * side effect of confirming that the directory is valid. + * + * @param mapperDirectoryRedirectEnabled Should the redirects be enabled? + */ +public void setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled); + +/** + * Determines if requests for a directory will be redirected (adding a + * trailing slash) by the Mapper. This is more efficient but has the + * side effect of confirming that the directory is valid. + * + * @return {@code true} if the Mapper level redirect is enabled for this + * Context. + */ +public boolean getMapperDirectoryRedirectEnabled(); } Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardContext.java?rev=1715206&r1=1715205&r2=1715206&view=diff == --- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original) +++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Thu Nov 19 16:17:38 2015 @@ -816,13 +816,53 @@ public class StandardContext extends Con private boolean validateClientProvidedNewSessionId = true; +boolean mapperContextRootRedirectEnabled = false; + +boolean mapperDirectoryRedirectEnabled = false; + + // - Context Properties @Override +public void setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled) { +this.mapperContextRootRedirectEnabled = mapperContextRootRedirectEnabled; +} + + +/** + * {@inheritDoc} + * + * The default value for this implementation is {@code false}. + */ +@Override +public boolean getMapperContextRootRedirectEnabled() { +return mapperContextRootRedirectEnabled; +} + + +@Override +public void setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled) { +
svn commit: r1715207 - in /tomcat/tc8.0.x/trunk: ./ java/org/apache/catalina/ java/org/apache/catalina/core/ java/org/apache/catalina/mapper/ java/org/apache/catalina/servlets/ java/org/apache/catalin
Author: markt Date: Thu Nov 19 16:20:32 2015 New Revision: 1715207 URL: http://svn.apache.org/viewvc?rev=1715207&view=rev Log: Move the functionality that provides redirects for context roots and directories where a trailing / is added from the Mapper to the DefaultServlet. This enables such requests to be processed by any configured Valves and Filters before the redirect is made. This behaviour is configurable via the mapperContextRootRedirectEnabled and mapperDirectoryRedirectEnabled attributes of the Context which may be used to restore the previous behaviour. Modified: tomcat/tc8.0.x/trunk/ (props changed) tomcat/tc8.0.x/trunk/java/org/apache/catalina/Context.java tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/tc8.0.x/trunk/java/org/apache/catalina/core/mbeans-descriptors.xml tomcat/tc8.0.x/trunk/java/org/apache/catalina/mapper/Mapper.java tomcat/tc8.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java tomcat/tc8.0.x/trunk/java/org/apache/catalina/startup/FailedContext.java tomcat/tc8.0.x/trunk/test/org/apache/catalina/core/TesterContext.java tomcat/tc8.0.x/trunk/test/org/apache/catalina/mapper/TestMapperWebapps.java tomcat/tc8.0.x/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java tomcat/tc8.0.x/trunk/test/org/apache/catalina/valves/rewrite/TestRewriteValve.java tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml tomcat/tc8.0.x/trunk/webapps/docs/config/context.xml Propchange: tomcat/tc8.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Nov 19 16:20:32 2015 @@ -1 +1 @@ -/tomcat/trunk:1636524,1637156,1637176,1637188,1637331,1637684,1637695,1638720-1638725,1639653,1640010,1640083-1640084,1640088,1640275,1640322,1640347,1640361,1640365,1640403,1640410,1640652,1640655-1640658,1640688,1640700-1640883,1640903,1640976,1640978,1641000,1641026,1641038-1641039,1641051-1641052,1641058,1641064,1641300,1641369,1641374,1641380,1641486,1641634,1641656-1641692,1641704,1641707-1641718,1641720-1641722,1641735,1641981,1642233,1642280,1642554,1642564,1642595,1642606,1642668,1642679,1642697,1642699,1642766,1643002,1643045,1643054-1643055,1643066,1643121,1643128,1643206,1643209-1643210,1643216,1643249,1643270,1643283,1643309-1643310,1643323,1643365-1643366,1643370-1643371,1643465,1643474,1643536,1643570,1643634,1643649,1643651,1643654,1643675,1643731,1643733-1643734,1643761,1643766,1643814,1643937,1643963,1644017,1644169,1644201-1644203,1644321,1644323,1644516,1644523,1644529,1644535,1644730,1644768,1644784-1644785,1644790,1644793,1644815,1644884,1644886,1644890,1644892 ,1644910,1644924,1644929-1644930,1644935,1644989,1645011,1645247,1645355,1645357-1645358,1645455,1645465,1645469,1645471,1645473,1645475,1645486-1645488,1645626,1645641,1645685,1645743,1645763,1645951-1645953,1645955,1645993,1646098-1646106,1646178,1646220,1646302,1646304,1646420,1646470-1646471,1646476,1646559,1646717-1646723,1646773,1647026,1647042,1647530,1647655,1648304,1648815,1648907,1649973,1650081,1650365,1651116,1651120,1651280,1651470,1652938,1652970,1653041,1653471,1653550,1653574,1653797,1653815-1653816,1653819,1653840,1653857,1653888,1653972,1654013,1654030,1654050,1654123,1654148,1654159,1654513,1654515,1654517,1654522,1654524,1654725,1654735,1654766,1654785,1654851-1654852,1654978,1655122-1655124,1655126-1655127,1655129-1655130,1655132-1655133,1655312,1655351,1655438,1655441,1655454,168,1656087,1656299,1656319,1656331,1656345,1656350,1656590,1656648-1656650,1656657,1657041,1657054,1657374,1657492,1657510,1657565,1657580,1657584,1657586,1657589,1657592,1657607,1657 609,1657682,1657907,1658207,1658734,1658781,1658790,1658799,1658802,1658804,1658833,1658840,1658966,1659043,1659053,1659059,1659174,1659184,1659188-1659189,1659216,1659263,1659293,1659304,1659306-1659307,1659382,1659384,1659428,1659471,1659486,1659505,1659516,1659521,1659524,1659559,1659562,1659803,1659806,1659814,1659833,1659862,1659905,1659919,1659948,1659967,1659983-1659984,1660060,1660074,1660077,1660133,1660168,1660331-1660332,1660353,1660358,1660924,1661386,1661867,1661972,1661990,1662200,1662308-1662309,1662548,1662614,1662736,1662985,1662988-1662989,1663264,1663277,1663298,1663534,1663562,1663676,1663715,1663754,1663768,1663772,1663781,1663893,1663995,1664143,1664163,1664174,1664301,1664317,1664347,1664657,1664659,1664710,1664863-1664864,1664866,1665085,1665292,1665559,1665653,1665661,1665672,1665694,1665697,1665736,1665779,1665976-1665977,1665980-1665981,1665985-1665986,1665989,1665998,1666004,1666008,1666013,1666017,1666024,1666116,1666386-1666387,1666494,1666496,1666552,1 666569,1666579,137,149,1666757,1666966,1666972,1666985,1666995,1666997,1667292,1667402,1667406,1667546,1667615,1667630,1667636,1667688,1667764,1667871,1668026,1668135,1668193,1668593,1668596,1668630,1668639,1668843,1669353,1669370,1669451,1669800,1669838,1669876,1669882,1670394,1670433,167
svn commit: r1715213 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/ java/org/apache/catalina/core/ java/org/apache/catalina/servlets/ java/org/apache/catalina/startup/ java/org/apache/tomcat
Author: markt Date: Thu Nov 19 16:42:28 2015 New Revision: 1715213 URL: http://svn.apache.org/viewvc?rev=1715213&view=rev Log: Move the functionality that provides redirects for context roots and directories where a trailing / is added from the Mapper to the DefaultServlet. This enables such requests to be processed by any configured Valves and Filters before the redirect is made. This behaviour is configurable via the mapperContextRootRedirectEnabled and mapperDirectoryRedirectEnabled attributes of the Context which may be used to restore the previous behaviour. Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/org/apache/catalina/Context.java tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/mbeans-descriptors.xml tomcat/tc7.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/FailedContext.java tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/http/mapper/Mapper.java tomcat/tc7.0.x/trunk/test/org/apache/catalina/core/TesterContext.java tomcat/tc7.0.x/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java tomcat/tc7.0.x/trunk/test/org/apache/tomcat/util/http/mapper/TestMapperWebapps.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml Propchange: tomcat/tc7.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Nov 19 16:42:28 2015 @@ -1,2 +1,2 @@ -/tomcat/tc8.0.x/trunk:1636525,1637336,1637685,1637709,1638726,1640089,1640276,1640349,1640363,1640366,1640642,1640672,1640674,1640689,1640884,1641001,1641065,1641067,1641375,1641638,1641723,1641726,1641729-1641730,1641736,1641988,1642669-1642670,1642698,1642701,1643205,1643215,1643217,1643230,1643232,1643273,1643285,1643329-1643330,1643511,1643513,1643521,1643539,1643571,1643581-1643582,1643635,1643655,1643738,1643964,1644018,1644333,1644954,1644992,1645014,1645360,1645456,1645627,1645642,1645686,1645903-1645904,1645908-1645909,1645913,1645920,1646458,1646460-1646462,1646735,1646738-1646741,1646744,1646746,1646748-1646755,1646757,1646759-1646760,1647043,1648816,1651420-1651422,1651844,1652926,1652939-1652940,1652973,1653798,1653817,1653841,1654042,1654161,1654736,1654767,1654787,1656592,1659907,1662986,1663265,1663278,1663325,1663535,1663567,1663679,1663997,1664175,1664321,1664872,1665061,1665086,1666027,1666395,1666503,1666506,1666560,1666570,1666581,1666759,1666967,1666988,1667553 -1667555,1667558,1667617,1667633,1667637,1667747,1667767,1667873,1668028,1668137,1668634,1669432,1669801,1669840,1669895-1669896,1670398,1670435,1670592,1670605-1670607,1670609,1670632,1670720,1670725,1670727,1670731,1671114,1672273,1672285,1673759,1674220,1674295,1675469,1675488,1675595,1675831,1676232,1676367-1676369,1676382,1676394,1676483,1676556,1676635,1678178,1679536,1679988,1680256,1681124,1681182,1681730,1681840,1681864,1681869,1682010,1682034,1682047,1682052-1682053,1682062,1682064,1682070,1682312,1682325,1682331,1682386,1684367,1684385,1685759,1685774,1685827,1685892,1687341,1688904,1689358,1689657,1689921,1692850,1693093,1693108,1693324,1694060,1694115,1694291,1694427,1694431,1694503,1694549,1694789,1694873,1694881,1695356,1695372,1695823-1695825,1696200,1696281,1696379,1696468,1700608,1700871,1700897,1700978,1701094,1701124,1701608,1701668,1701676,1701766,1701944,1702248,1702252,1702314,1702390,1702723,1702725,1702728,1702730,1702733,1702735,1702737,1702739,1702742,1702 744,1702748,1702751,1702754,1702758,1702760,1702763,1702766,1708779,1708782,1708806,1709314,1709670,1710347,1710442,1710448,1710490,1710574,1710578,1712226,1712229,1712235,1712255,1712618,1712649,1712655,1712899,1712903,1712906,1712975,1713185,1713262,1713287,1713613,1713621,1713872,1713976,1713994,1713998,1714004,1714013,1714059,1714538,1714580 -/tomcat/trunk:1156115-1157160,1157162-1157859,1157862-1157942,1157945-1160347,1160349-1163716,1163718-1166689,1166691-1174340,1174342-1175596,1175598-1175611,1175613-1175932,1175934-1177783,1177785-1177980,1178006-1180720,1180722-1183094,1183096-1187753,1187755,1187775,1187801,1187806,1187809,1187826-1188312,1188314-1188401,1188646-1188840,1188842-1190176,1190178-1195223,1195225-1195953,1195955,1195957-1201238,1201240-1203345,1203347-1206623,1206625-1208046,1208073,1208096,1208114,1208145,1208772,1209194-1212125,1212127-1220291,1220293,1220295-1221321,1221323-1222329,1222332-1222401,1222405-1222795,1222850-1222950,1222969-1225326,1225328-1225463,1225465,1225627,1225629-1226534,1226536-1228908,1228911-1228923,1228927-1229532,1229534-1230766,1230768-1231625,1231627-1233414,1233419-1235207,1235209-1237425,1237427,1237429-1237977,1237981,1237985,1237995,1238070,1238073,1239024-1239048,1239050-1239062,1239135,1239256,1239258-1239485,1239785-1240046,1240101,1240106,1240109,1240112,1240114 ,1240116,1240118
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 Konstantin Kolinko changed: What|Removed |Added Severity|normal |enhancement --- Comment #4 from Konstantin Kolinko --- You should be able to patch the script that calls catalina.sh to wrap that call with a nohup. Such a recipe is already mentioned in the FAQ https://wiki.apache.org/tomcat/TomcatOnSolaris10 https://wiki.apache.org/tomcat/FAQ/Linux_Unix#Q3 It is also possible to consider switching from "catalina.sh start" to "catalina.sh run". In general, this is interesting. With nohup I have to redirect stdout and stderr, or it will create its own nohup.out. Here the redirection is already on the command line, so it writes to catalina.out without a need for separate log file. Note that there is also bug 53930 (allowing to replace catalina.out with a pipe) that also intends to change the launch command. I think it is not committed yet, because it is too tricky. > which turns: > "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS $CATALINA_OPTS > into > $JAVA_WRAPPER "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS > $CATALINA_OPTS 1. The above line is from Tomcat 6. It does not match catalina.sh in current trunk which uses "eval". 2. There are more that one variant of "start" command. There are different commands with Security Manager enabled ("-security") and without one. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715216 - in /tomcat/tc6.0.x/trunk: ./ java/org/apache/catalina/ java/org/apache/catalina/connector/ java/org/apache/catalina/core/ java/org/apache/catalina/servlets/ java/org/apache/tomc
Author: markt Date: Thu Nov 19 17:06:54 2015 New Revision: 1715216 URL: http://svn.apache.org/viewvc?rev=1715216&view=rev Log: Move the functionality that provides redirects for context roots and directories where a trailing / is added from the Mapper to the DefaultServlet. This enables such requests to be processed by any configured Valves and Filters before the redirect is made. This behaviour is configurable via the mapperContextRootRedirectEnabled and mapperDirectoryRedirectEnabled attributes of the Context which may be used to restore the previous behaviour. Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/java/org/apache/catalina/Context.java tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/MapperListener.java tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/StandardContext.java tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/mbeans-descriptors.xml tomcat/tc6.0.x/trunk/java/org/apache/catalina/servlets/DefaultServlet.java tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/http/mapper/Mapper.java tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml Propchange: tomcat/tc6.0.x/trunk/ -- --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Nov 19 17:06:54 2015 @@ -1,3 +1,3 @@ -/tomcat/tc7.0.x/trunk:1224802,1243045,1298635,1304471,1311997,1312007,1331772,1333164,1333176,1348992,1354866,1371298,1371302,1371620,1402110,1409014,1413553,1413557,1413563,1430083,1438415,1446641-1446660,1447013,1453106,1453119,1484919,1486877,1500065,1503852,1505844,1513151,1521040,1526470,1536524,1539176-1539177,1544469,1544473,1552805,1558894,1558917,1561368,1561382,1561386,1561552,1561561,1561636,1561641,1561643,1561737,1562748,1564317,1568922,1570163,1577328,1577464-1577465,1578814,1586659,1586897,1586960,1588199,1588997,1589740,1589851,1589997,1590019,1590028,1590337,1590492,1590651,1590838,1590845,1590848,1590912,1593262,1593288,1593371,1593835,1594230,1595174,1595366,1600956,1601333,1601856,1601909,1609079,1609606,1617364,1617374,1617433,1617457-1617458,1624249,1626579,1627420,1627469,1632586,1637686,1637711,1640675,1642045,1643515,1643540,1643572,1643585-1643586,1643642,1643647,1644019,1648817,1656301,1658815,1659523,1659564,1664001,1664176,1665087,1666968,1666989,1668541 ,1668635,1669802,1676557,1681183,1681841,1681865,1681867,1685829,1693109,1694293,1694433,1694875,1696381,1701945,1710353,1712656,1713873,1714000,1714005,1714540 -/tomcat/tc8.0.x/trunk:1637685,1637709,1640674,1641726,1641729-1641730,1643513,1643539,1643571,1643581-1643582,1644018,1648816,1656300,1658801-1658803,1658811,1659522,1663997,1664175,1665086,1666967,1666988,1668634,1669801,1676556,1681182,1681840,1681864,1685827,1689921,1693108,1694291,1694427,1694873,1696379,1701944,1710347,1712618,1712655,1713872,1713998,1714004,1714538 -/tomcat/trunk:601180,606992,612607,630314,640888,652744,653247,656018,666232,673796,673820,677910,683969,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,693378,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,713953,714002,718360,719119,719124,719602,719626,719628,720046,720069,721040,721286,721708,721886,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729681,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,742677,742697,742714,744160,744238,746321,746384,746425,747834,747863,748344,750258,750291,750921,751286-751287,751289,751295,752323,753039,757335,757774,758249,758365,758596,758616,758664,759074,761601,762868,762929,762936-762937,763166,763183,763193,763228,763262,763298,763302,763325,763599,763611,763654,763681,763706,764985,764997,765662,768335,769979,770716,770 809,770876,772872,776921,776924,776935,776945,777464,777466,777576,777625,778379,778523-778524,781528,781779,782145,782791,783316,783696,783724,783756,783762,783766,783863,783934,784453,784602,784614,785381,785688,785768,785859,786468,786487,786490,786496,786667,787627,787770,787985,789389,790405,791041,791184,791194,791224,791243,791326,791328,791789,792740,793372,793757,793882,793981,794082,794673,794822,795043,795152,795210,795457,795466,797168,797425,797596,797607,802727,802940,804462,804544,804734,805153,809131,809603,810916,810977,812125,812137,812432,813001,813013,813866,814180,814708,814876,815972,816252,817442,817822,819339,819361,820110,820132,820874,820954,821397,828196,828201,828210,828225,828759,830378-830379,830999,831106,831774,831785,831828,831850,831860,832214,832218,833121,833545,834047,835036,835336,836405,881396,881412,883130,883134,883146,883165,883177,883362,883565,884341,885038,885231,885241,885260,885901,885991,886019,888072,889363,889606,889716,890139,890265 ,890349-890350,890417,891185-891187,891583,892198,892341,892415,89
buildbot success in ASF Buildbot on tomcat-8-trunk
The Buildbot has detected a restored build on builder tomcat-8-trunk while building ASF Buildbot. Full details are available at: http://ci.apache.org/builders/tomcat-8-trunk/builds/280 Buildbot URL: http://ci.apache.org/ Buildslave for this Build: silvanus_ubuntu Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-8-commit' triggered this build Build Source Stamp: [branch tomcat/tc8.0.x/trunk] 1715207 Blamelist: markt Build succeeded! Sincerely, -The Buildbot - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 57773] performance problems when using scopeless optional attributes
https://bz.apache.org/bugzilla/show_bug.cgi?id=57773 Woonsan Ko changed: What|Removed |Added CC||woon...@apache.org -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #5 from Michael Osipov <1983-01...@gmx.net> --- (In reply to Christopher Schultz from comment #2) > I'm +0 on this idea, but failing to quote is going to be a problem. > > Instead of using an unquoted value, you should use if/else to either run the > command with the wrapper, or run it without the wrapper. Having an if/else around would duplicate 15 lines for nothing. Unnecessary maintenance overhead. (In reply to Mark Thomas from comment #3) > Given the length of time other HP-UX users have been running Tomcat without > this issue this looks more like an HP-UX configuration / usage error than > something that needs to be fixed in the Tomcat scripts. I'd be glad to see a better solution but there is not better way -- yet. Even HP does this, so it must be a OS-specific issue. I did not say that the Tomcat scripts are broken. We just need to broaden support. OS X, OS/400 and Cygwin get special treatment too. (In reply to Konstantin Kolinko from comment #4) > You should be able to patch the script that calls catalina.sh to wrap that > call with a nohup. Such a recipe is already mentioned in the FAQ Not an option because "stop" does not work anymore. > https://wiki.apache.org/tomcat/TomcatOnSolaris10 > https://wiki.apache.org/tomcat/FAQ/Linux_Unix#Q3 Tomcat 5.5? This is ages old. Nothing is worse that outdated information. > It is also possible to consider switching from "catalina.sh start" to > "catalina.sh run". Not an option becuase it does not detach for the shell script and stdout/stderr go not to catalina.out. > In general, this is interesting. With nohup I have to redirect stdout and > stderr, or it will create its own nohup.out. Here the redirection is > already on the command line, so it writes to catalina.out without a need for > separate log file. > > > Note that there is also bug 53930 (allowing to replace catalina.out with a > pipe) that also intends to change the launch command. I think it is not > committed yet, because it is too tricky. > > > which turns: > > "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS $CATALINA_OPTS > > into > > $JAVA_WRAPPER "$_RUNJAVA" "$LOGGING_CONFIG" $LOGGING_MANAGER $JAVA_OPTS > > $CATALINA_OPTS > > 1. The above line is from Tomcat 6. It does not match catalina.sh in current > trunk which uses "eval". I am stuck for 6.x current but would be happy to see this fixed in 8.x and onwards. > 2. There are more that one variant of "start" command. There are different > commands with Security Manager enabled ("-security") and without one. My patch suggests patching both codepaths. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58626] Tomcat does not start at boot time due to SIGHUP
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #6 from Michael Osipov <1983-01...@gmx.net> --- I do not intend to write another wrapper for a wrapper for a wrapper. This ends in a mess. Given that there are already so many shell scripts involved in the start of Tomcat, I'd like to avoid any further customization of standard scripts. That ends in a private fork which I'd like to avoid at any cost. Tomcat runs perfectly fine on HP-UX on the HP JVM for years now. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 58625] Failed to detect war change
https://bz.apache.org/bugzilla/show_bug.cgi?id=58625 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #2 from Mark Thomas --- Sorry, we aren't going to be making that change. If a user upgrades from a Tomcat version without this feature to a Tomcat version with this feature it is going to trigger removal of the expanded dir and re-expansion of the WAR. That is unexpected and is likely to cause problems for some users. If you can identify exactly what is going wrong in your use case then we can take another look to see if we can handle that specific case. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1715254 - in /tomcat/tc8.0.x/tags/TOMCAT_8_0_29: ./ build.properties.default webapps/docs/changelog.xml
Author: markt Date: Thu Nov 19 19:55:25 2015 New Revision: 1715254 URL: http://svn.apache.org/viewvc?rev=1715254&view=rev Log: Tag 8.0.29 Added: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ (props changed) - copied from r1715253, tomcat/tc8.0.x/trunk/ Modified: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/build.properties.default tomcat/tc8.0.x/tags/TOMCAT_8_0_29/webapps/docs/changelog.xml Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- bugtraq:append = false Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- bugtraq:label = Bugzilla ID (optional) Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- --- bugtraq:logregex (added) +++ bugtraq:logregex Thu Nov 19 19:55:25 2015 @@ -0,0 +1,2 @@ +(https?\://(bz|issues)\.apache\.org/bugzilla/show_bug.cgi\?id=\d+|BZ\s?\d+) +(\d+) Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- bugtraq:message = Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID% Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- bugtraq:url = https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID% Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- --- svn:ignore (added) +++ svn:ignore Thu Nov 19 19:55:25 2015 @@ -0,0 +1,7 @@ +.* +build.properties +logs +nbproject +output +work +*.iml Propchange: tomcat/tc8.0.x/tags/TOMCAT_8_0_29/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Thu Nov 19 19:55:25 2015 @@ -0,0 +1 @@ +/tomcat/trunk:1636524,1637156,1637176,1637188,1637331,1637684,1637695,1638720-1638725,1639653,1640010,1640083-1640084,1640088,1640275,1640322,1640347,1640361,1640365,1640403,1640410,1640652,1640655-1640658,1640688,1640700-1640883,1640903,1640976,1640978,1641000,1641026,1641038-1641039,1641051-1641052,1641058,1641064,1641300,1641369,1641374,1641380,1641486,1641634,1641656-1641692,1641704,1641707-1641718,1641720-1641722,1641735,1641981,1642233,1642280,1642554,1642564,1642595,1642606,1642668,1642679,1642697,1642699,1642766,1643002,1643045,1643054-1643055,1643066,1643121,1643128,1643206,1643209-1643210,1643216,1643249,1643270,1643283,1643309-1643310,1643323,1643365-1643366,1643370-1643371,1643465,1643474,1643536,1643570,1643634,1643649,1643651,1643654,1643675,1643731,1643733-1643734,1643761,1643766,1643814,1643937,1643963,1644017,1644169,1644201-1644203,1644321,1644323,1644516,1644523,1644529,1644535,1644730,1644768,1644784-1644785,1644790,1644793,1644815,1644884,1644886,1644890,1644892 ,1644910,1644924,1644929-1644930,1644935,1644989,1645011,1645247,1645355,1645357-1645358,1645455,1645465,1645469,1645471,1645473,1645475,1645486-1645488,1645626,1645641,1645685,1645743,1645763,1645951-1645953,1645955,1645993,1646098-1646106,1646178,1646220,1646302,1646304,1646420,1646470-1646471,1646476,1646559,1646717-1646723,1646773,1647026,1647042,1647530,1647655,1648304,1648815,1648907,1649973,1650081,1650365,1651116,1651120,1651280,1651470,1652938,1652970,1653041,1653471,1653550,1653574,1653797,1653815-1653816,1653819,1653840,1653857,1653888,1653972,1654013,1654030,1654050,1654123,1654148,1654159,1654513,1654515,1654517,1654522,1654524,1654725,1654735,1654766,1654785,1654851-1654852,1654978,1655122-1655124,1655126-1655127,1655129-1655130,1655132-1655133,1655312,1655351,1655438,1655441,1655454,168,1656087,1656299,1656319,1656331,1656345,1656350,1656590,1656648-1656650,1656657,1657041,1657054,1657374,1657492,1657510,1657565,1657580,1657584,1657586,1657589,1657592,1657607,1657 609,1657682,1657907,1658207,1658734,1658781,1658790,1658799,1658802,1658804,1658833,1658840,1658966,1659043,1659053,1659059,1659174,1659184,1659188-1659189,1659216,1659263,1659293,1659304,1659306-1659307,1659382,1659384,1659428,1659471,1659486,1659505,1659516,1659521,1659524,1659559,1659562,1659803,1659806,1659814,1659833,1659862,1659905,1659919,1659948,1659967,1659983-1659984,1660060,1660074,1660077,1660133,1660168,1660331-1660332,1660353,1660358,1660924,1661386,1661867,1661972,1661990,1662200,1662308-1662309,1662548,1662614,1662736,1662985,1662988-1662989,1663264,1663277,1663298,1663534,1663562,1663676,1663715,1663754,1663768,1663772,1663781,1663893,1663995,1664143,1664163,1664174,1664301,1664317,1664347,1664657,1664659,1664710,1664863-1664864,1664866,1665085,1665292,1665559,1665653,1665661,1665672,1665694,1665697,1665736,1665779,1665976-1665977,1665980-1665981,1665985-1665986,1665989,1665998,1666004,1666008,1666013,1666017,1666024,1666116,1666386-1666387,1666494,1666496,1666552,1 666569,1666579,137,149,1666757,1666966,1666972,1666985,1666995,1666997,1667292,1667402
svn commit: r1715296 - in /tomcat/site/trunk/docs: tomcat-7.0-doc/config/context.html tomcat-8.0-doc/config/context.html tomcat-9.0-doc/config/context.html
Author: ognjen Date: Thu Nov 19 22:14:59 2015 New Revision: 1715296 URL: http://svn.apache.org/viewvc?rev=1715296&view=rev Log: Typo: missing space. Modified: tomcat/site/trunk/docs/tomcat-7.0-doc/config/context.html tomcat/site/trunk/docs/tomcat-8.0-doc/config/context.html tomcat/site/trunk/docs/tomcat-9.0-doc/config/context.html Modified: tomcat/site/trunk/docs/tomcat-7.0-doc/config/context.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-7.0-doc/config/context.html?rev=1715296&r1=1715295&r2=1715296&view=diff == --- tomcat/site/trunk/docs/tomcat-7.0-doc/config/context.html (original) +++ tomcat/site/trunk/docs/tomcat-7.0-doc/config/context.html Thu Nov 19 22:14:59 2015 @@ -409,8 +409,8 @@ p.notice { resource that is not protected by a security constraint, if the authenticator supports preemptive authentication (the standard authenticators provided with Tomcat do) then the user' credentials -will be processed. If not specified, the default of falseis -used. +will be processed. If not specified, the default of false +is used. privileged Set to true to allow this context to use container Modified: tomcat/site/trunk/docs/tomcat-8.0-doc/config/context.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-8.0-doc/config/context.html?rev=1715296&r1=1715295&r2=1715296&view=diff == --- tomcat/site/trunk/docs/tomcat-8.0-doc/config/context.html (original) +++ tomcat/site/trunk/docs/tomcat-8.0-doc/config/context.html Thu Nov 19 22:14:59 2015 @@ -366,8 +366,8 @@ resource that is not protected by a security constraint, if the authenticator supports preemptive authentication (the standard authenticators provided with Tomcat do) then the user' credentials -will be processed. If not specified, the default of falseis -used. +will be processed. If not specified, the default of false +is used. privileged Set to true to allow this context to use container Modified: tomcat/site/trunk/docs/tomcat-9.0-doc/config/context.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-9.0-doc/config/context.html?rev=1715296&r1=1715295&r2=1715296&view=diff == --- tomcat/site/trunk/docs/tomcat-9.0-doc/config/context.html (original) +++ tomcat/site/trunk/docs/tomcat-9.0-doc/config/context.html Thu Nov 19 22:14:59 2015 @@ -366,8 +366,8 @@ resource that is not protected by a security constraint, if the authenticator supports preemptive authentication (the standard authenticators provided with Tomcat do) then the user' credentials -will be processed. If not specified, the default of falseis -used. +will be processed. If not specified, the default of false +is used. privileged Set to true to allow this context to use container - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GUMP@vmgump]: Project tomcat-tc8.0.x-test-apr (in module tomcat-8.0.x) failed
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-tc8.0.x-test-apr has an issue affecting its community integration. This issue affects 1 projects, and has been outstanding for 4 runs. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - tomcat-tc8.0.x-test-apr : Tomcat 8.x, a web server implementing the Java Servlet 3.1, ... Full details are available at: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-apr/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Dependency on commons-daemon exists, no need to add for property commons-daemon.native.src.tgz. -DEBUG- Dependency on commons-daemon exists, no need to add for property tomcat-native.tar.gz. -INFO- Failed with reason build failed -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/logs-APR -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-APR/logs -WARNING- No directory [/srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-APR/logs] The following work was performed: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-apr/gump_work/build_tomcat-8.0.x_tomcat-tc8.0.x-test-apr.html Work Name: build_tomcat-8.0.x_tomcat-tc8.0.x-test-apr (Type: Build) Work ended in a state of : Failed Elapsed: 39 mins 33 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar -Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.3-SNAPSHOT.jar -Dtest.reports=output/logs-APR -Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20151120-native-src.tar.gz -Dexamples.sources.skip=true -Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.5-201506032000/ecj-4.5.jar -Dtest.apr.loc=/srv/gump/public/workspace/tomcat-native/dest-20151120/lib -Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20151120.jar -Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20151120-native-src.tar.gz -Dtest.temp=output/test-tmp-APR -Dtest.accesslog=true -Dexecute.test.nio=false -Dtest .openssl.path=/srv/gump/public/workspace/openssl-1.0.2/dest-20151120/bin/openssl -Dexecute.test.bio=false -Dexecute.test.apr=true -Dtest.excludePerformance=true -Dexecute.test.nio2=false -Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-3.5-SNAPSHOT.jar -Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test [Working Directory: /srv/gump/public/workspace/tomcat-8.0.x] CLASSPATH: /usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-8.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/servlet-api.ja r:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/websocket-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-storeconfig.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ha.jar:/srv/gump/public/worksp
[GUMP@vmgump]: Project tomcat-tc8.0.x-test-nio (in module tomcat-8.0.x) failed
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project tomcat-tc8.0.x-test-nio has an issue affecting its community integration. This issue affects 1 projects. The current state of this project is 'Failed', with reason 'Build Failed'. For reference only, the following projects are affected by this: - tomcat-tc8.0.x-test-nio : Tomcat 8.x, a web server implementing the Java Servlet 3.1, ... Full details are available at: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-nio/index.html That said, some information snippets are provided here. The following annotations (debug/informational/warning/error messages) were provided: -DEBUG- Dependency on commons-daemon exists, no need to add for property commons-daemon.native.src.tgz. -DEBUG- Dependency on commons-daemon exists, no need to add for property tomcat-native.tar.gz. -INFO- Failed with reason build failed -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/logs-NIO -INFO- Project Reports in: /srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-NIO/logs -WARNING- No directory [/srv/gump/public/workspace/tomcat-8.0.x/output/test-tmp-NIO/logs] The following work was performed: http://vmgump.apache.org/gump/public/tomcat-8.0.x/tomcat-tc8.0.x-test-nio/gump_work/build_tomcat-8.0.x_tomcat-tc8.0.x-test-nio.html Work Name: build_tomcat-8.0.x_tomcat-tc8.0.x-test-nio (Type: Build) Work ended in a state of : Failed Elapsed: 37 mins 53 secs Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true -Dbuild.sysclasspath=only org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar -Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.3-SNAPSHOT.jar -Dtest.reports=output/logs-NIO -Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20151120-native-src.tar.gz -Dexamples.sources.skip=true -Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.5-201506032000/ecj-4.5.jar -Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20151120.jar -Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20151120-native-src.tar.gz -Dtest.temp=output/test-tmp-NIO -Dtest.accesslog=true -Dexecute.test.nio=true -Dtest.openssl.path=/srv/gump/public/workspace/openssl-1.0.2/dest-20151120/bin/op enssl -Dexecute.test.bio=false -Dexecute.test.apr=false -Dtest.excludePerformance=true -Dexecute.test.nio2=false -Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-3.5-SNAPSHOT.jar -Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test [Working Directory: /srv/gump/public/workspace/tomcat-8.0.x] CLASSPATH: /usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-8.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/servlet-api.ja r:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/websocket-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-storeconfig.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-tribes.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/catalina-ha.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/tomcat-api.jar:/srv/gump/public/workspace/tomcat-8.0.x/output/build/lib/tomcat-jn
Re: Apache Tomcat YouTube channel
Don’t hesitate to share the link to this channel as soon as it is available, so that people can subscribe to it! Benjamin > Le 19 nov. 2015 à 14:44, Mark Thomas a écrit : > > Hi, > > In readiness for the Webinar recordings, I have created the Apache > Tomcat YouTube channel. > > If any committer wants to help manage that channel, just let me know and > I'll add you (via you asf e-mail so this needs to be linked to your > Google account). > > Mark > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org