[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #22 from Dave --- By the way, switching between UTF-8 and ISO-8859-1 made no difference. -- You are receiving this mail because: You are the assignee for the bug.

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #21 from Dave --- Created attachment 33897 --> https://bz.apache.org/bugzilla/attachment.cgi?id=33897=edit log file with bare bones conf/web.xml -- You are receiving this mail because: You are the assignee

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #20 from Dave --- Created attachment 33896 --> https://bz.apache.org/bugzilla/attachment.cgi?id=33896=edit "bare bones" conf/web.xml -- You are receiving this mail because: You are the assignee for the bug.

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #19 from Dave --- The problem still exits even with a "bare bones" conf/web.xml -- You are receiving this mail because: You are the assignee for the bug.

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #18 from Dave --- Created attachment 33895 --> https://bz.apache.org/bugzilla/attachment.cgi?id=33895=edit minimum /conf/web.xml -- You are receiving this mail because: You are the assignee for the bug.

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #17 from Dave --- The problem still exists after each step: 1. as each app is removed 2. with only ROOT app 3. after removing ROOT/WEB-INF/web.xml 4. with a minimum conf/web.xml I will upload the minimum

[Bug 57665] support x-forwarded-host

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57665 --- Comment #2 from Robert --- The best workaround so far (which is really just a hack) is to extend Http11NioProtocol as shown below: /** * Custom Tomcat Protocol based off of Http11NioProtocol that looks for an

svn commit: r1745608 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/loader/WebappClassLoaderBase.java webapps/docs/changelog.xml

2016-05-26 Thread markt
Author: markt Date: Thu May 26 14:00:10 2016 New Revision: 1745608 URL: http://svn.apache.org/viewvc?rev=1745608=rev Log: Within the web application class loader, always use path as the key for the resource cache to improve the hit ration. This also fixes a problem exposed by the fix for bug

[Bug 59619] Failed to read schema document 'classpath:/schema/shibboleth-2.0-services.xsd'

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59619 Mark Thomas changed: What|Removed |Added Resolution|--- |FIXED

[Bug 59635] PerMessageDeflate.sendMassagePart() IllegalArgumentException using atmosphere

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59635 Mark Thomas changed: What|Removed |Added OS||All

[Bug 58626] Tomcat does not start at boot time due to SIGHUP

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #20 from Michael Osipov <1983-01...@gmx.net> --- (In reply to Konstantin Kolinko from comment #19) > I think this may change the meaning of pid value in $CATALINA_PID file. I > think that it will be the process id of nohup process

svn commit: r1745599 - in /tomcat/tc7.0.x/trunk: java/org/apache/catalina/loader/WebappClassLoaderBase.java webapps/docs/changelog.xml

2016-05-26 Thread markt
Author: markt Date: Thu May 26 12:48:24 2016 New Revision: 1745599 URL: http://svn.apache.org/viewvc?rev=1745599=rev Log: Make resourceEntries a ConcurrentHashMap else there is a risk of a threading issues when different threads read and write at the same time. Modified:

[Bug 58626] Tomcat does not start at boot time due to SIGHUP

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58626 --- Comment #19 from Konstantin Kolinko --- I think this may change the meaning of pid value in $CATALINA_PID file. I think that it will be the process id of nohup process instead of java one. Known uses of pid value:

Re: Difference in the behaviour of WebappClassLoaderBase.getResource for jar resources

2016-05-26 Thread Mark Thomas
On 06/05/2016 09:37, Violeta Georgieva wrote: > Let me summarize the findings till now. > > According to [1] > > 1) when Class.getResource(name) > "The resource name given to a Class method may have an initial starting "/" > that identifies it as an "absolute" name. Resource names that do not

[Bug 59604] Invalid url-pattern in servlet mapping on s390x

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59604 --- Comment #16 from Mark Thomas --- Please try the following: Clean Tomcat install. Confirm problem exists. Remove apps one by one until only ROOT is left. Confirm problem still exists as each app is removed. Remove

[Bug 59564] HttpServletRequest.getPart() always returns null with HTTP/2

2016-05-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=59564 Mark Thomas changed: What|Removed |Added Resolution|--- |FIXED

svn commit: r1745578 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/coyote/http2/Http2UpgradeHandler.java test/org/apache/coyote/http2/Http2TestBase.java webapps/docs/changelog.xml

2016-05-26 Thread markt
Author: markt Date: Thu May 26 08:46:19 2016 New Revision: 1745578 URL: http://svn.apache.org/viewvc?rev=1745578=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=59564 Correct offset when reading into HTTP/2 input buffer that could cause problems reading request bodies. Patch by

svn commit: r1745576 - in /tomcat/trunk: java/org/apache/coyote/http2/Http2Parser.java webapps/docs/changelog.xml

2016-05-26 Thread markt
Author: markt Date: Thu May 26 08:44:07 2016 New Revision: 1745576 URL: http://svn.apache.org/viewvc?rev=1745576=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=59564 Correct offset when reading into HTTP/2 input buffer that could cause problems reading request bodies. Patch by

svn commit: r1745566 - in /tomcat/tc6.0.x/trunk: ./ webapps/docs/ssl-howto.xml

2016-05-26 Thread violetagg
Author: violetagg Date: Thu May 26 06:45:54 2016 New Revision: 1745566 URL: http://svn.apache.org/viewvc?rev=1745566=rev Log: Merged revision 1745337 from tomcat/trunk: Checkstyle. Modified: tomcat/tc6.0.x/trunk/ (props changed) tomcat/tc6.0.x/trunk/webapps/docs/ssl-howto.xml

svn commit: r1745565 - in /tomcat/tc7.0.x/trunk: ./ webapps/docs/ssl-howto.xml

2016-05-26 Thread violetagg
Author: violetagg Date: Thu May 26 06:44:20 2016 New Revision: 1745565 URL: http://svn.apache.org/viewvc?rev=1745565=rev Log: Merged revision 1745337 from tomcat/trunk: Checkstyle. Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/webapps/docs/ssl-howto.xml

svn commit: r1745564 - in /tomcat/tc8.0.x/trunk: ./ webapps/docs/ssl-howto.xml

2016-05-26 Thread violetagg
Author: violetagg Date: Thu May 26 06:41:35 2016 New Revision: 1745564 URL: http://svn.apache.org/viewvc?rev=1745564=rev Log: Merged revision 1745337 from tomcat/trunk: Checkstyle. Modified: tomcat/tc8.0.x/trunk/ (props changed) tomcat/tc8.0.x/trunk/webapps/docs/ssl-howto.xml

svn commit: r1745563 - in /tomcat/tc8.5.x/trunk: ./ webapps/docs/changelog.xml webapps/docs/ssl-howto.xml

2016-05-26 Thread violetagg
Author: violetagg Date: Thu May 26 06:38:55 2016 New Revision: 1745563 URL: http://svn.apache.org/viewvc?rev=1745563=rev Log: Merged revision 1745337 from tomcat/trunk: Checkstyle. Modified: tomcat/tc8.5.x/trunk/ (props changed) tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml