[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #12 from Michael Osipov --- (In reply to Malay from comment #11) > I took a closer look at my implementation and it is actually option (c): > c) container sends it when an InputStream / Reader is first used > > The approach that

[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #11 from Malay --- I took a closer look at my implementation and it is actually option (c): c) container sends it when an InputStream / Reader is first used The approach that I'm taking is to only send the '100 continue' response

buildbot success in on tomcat-85-trunk

2020-08-04 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-85-trunk while building tomcat. Full details are available at: https://ci.apache.org/builders/tomcat-85-trunk/builds/2398 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: asf946_ubuntu Build Reason: The

[GitHub] [tomcat] kamnani opened a new pull request #331: Remove White Spaces and extra lines from the JSP files

2020-08-04 Thread GitBox
kamnani opened a new pull request #331: URL: https://github.com/apache/tomcat/pull/331 The changes enables the compiler to remove excess white spaces and new lines from the JSP files & thus reduce the JVM metadata. This

buildbot success in on tomcat-9-trunk

2020-08-04 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-9-trunk while building tomcat. Full details are available at: https://ci.apache.org/builders/tomcat-9-trunk/builds/356 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: asf946_ubuntu Build Reason: The

[tomcat] branch 8.5.x updated: Update changelog.xml

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new 3f81598 Update changelog.xml 3f81598 is

[tomcat] branch 9.0.x updated: Fix XML

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new 4b3580a Fix XML 4b3580a is described below

[tomcat] branch master updated: Fix XML

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/master by this push: new 446b7d3 Fix XML 446b7d3 is described below

buildbot failure in on tomcat-85-trunk

2020-08-04 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-85-trunk while building tomcat. Full details are available at: https://ci.apache.org/builders/tomcat-85-trunk/builds/2397 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: asf946_ubuntu Build Reason: The

[tomcat] branch 8.5.x updated: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=62723

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new df39f20 Fix

buildbot failure in on tomcat-9-trunk

2020-08-04 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-9-trunk while building tomcat. Full details are available at: https://ci.apache.org/builders/tomcat-9-trunk/builds/355 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: asf946_ubuntu Build Reason: The

buildbot failure in on tomcat-trunk

2020-08-04 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-trunk while building tomcat. Full details are available at: https://ci.apache.org/builders/tomcat-trunk/builds/5328 Buildbot URL: https://ci.apache.org/ Buildslave for this Build: asf946_ubuntu Build Reason: The AnyBranchScheduler

[tomcat] branch 9.0.x updated: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=62723

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new b75ee12 Fix

[tomcat] branch master updated: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=62723

2020-08-04 Thread schultz
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/master by this push: new d3c8a10 Fix

[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #10 from Michael Osipov --- (In reply to Christopher Schultz from comment #9) > Why send 100-continue if you don't expect to send a request entity? The > whole point of 100-continue is to request permission from the server to send

[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #9 from Christopher Schultz --- Why send 100-continue if you don't expect to send a request entity? The whole point of 100-continue is to request permission from the server to send a (usually large) request entity. -- You are

[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #8 from Michael Osipov --- Please note that state changing actions do not necessary require a body, e.g., DELETE or generic POST with command in the URL. If Tomcat would wait until obtaining input this would completely defeat

[Bug 57661] Delay sending of 100 continue response until application tries to read request body

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57661 --- Comment #7 from ma...@backblaze.com --- (In reply to Mark Thomas from comment #5) I ran into this recently and ended up implementing option (b) locally: b) container sends it when an InputStream / Reader is obtained I'd be happy to prepare

[Bug 64644] wrong state of WsSession on network outage

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 --- Comment #3 from Saksham Verma --- PR: https://github.com/apache/tomcat/pull/330/files Could any maintainer please review. -- You are receiving this mail because: You are the assignee for the bug.

[GitHub] [tomcat] sakshamverma opened a new pull request #330: BZ-64644 throw an Idle Session handler on idle timeout

2020-08-04 Thread GitBox
sakshamverma opened a new pull request #330: URL: https://github.com/apache/tomcat/pull/330 Bug ID Bug ID: https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 The demo is also present there. I found a bug while working on my product of IoT platform. On network outage, the

[GitHub] [tomcat] sakshamverma closed pull request #329: Bz64644 idle session handler

2020-08-04 Thread GitBox
sakshamverma closed pull request #329: URL: https://github.com/apache/tomcat/pull/329 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go

[GitHub] [tomcat] michael-o commented on pull request #329: Bz64644 idle session handler

2020-08-04 Thread GitBox
michael-o commented on pull request #329: URL: https://github.com/apache/tomcat/pull/329#issuecomment-668710010 Rebase first This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [tomcat] sakshamverma opened a new pull request #329: Bz64644 idle session handler

2020-08-04 Thread GitBox
sakshamverma opened a new pull request #329: URL: https://github.com/apache/tomcat/pull/329 Bug ID: https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 This is an automated message from the Apache Git Service.

[Bug 64644] wrong state of WsSession on network outage

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 --- Comment #2 from Saksham Verma --- (In reply to Saksham Verma from comment #1) > Created attachment 37383 [details] > a web project to start a ws server and index.html showing value of active > websocket connections Use the latest

[Bug 64644] wrong state of WsSession on network outage

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 --- Comment #1 from Saksham Verma --- Created attachment 37383 --> https://bz.apache.org/bugzilla/attachment.cgi?id=37383=edit a web project to start a ws server and index.html showing value of active websocket connections -- You are

[Bug 64645] bin/service.bat doesn't handle wrongly configured JAVA_HOME

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64645 Christopher Schultz changed: What|Removed |Added OS||All --- Comment #1 from

Re: Discouraging Rogue Users In Tomcat

2020-08-04 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Alan, On 8/3/20 21:25, Alan Basche wrote: > I have recently developed code for Tomcat 8.5 that defends against > black-hats probing Tomcat and the website apps for > vulnerabilities. This coding effort started a year ago, and the > latest code has

[Bug 64645] New: bin/service.bat doesn't handle wrongly configured JAVA_HOME

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64645 Bug ID: 64645 Summary: bin/service.bat doesn't handle wrongly configured JAVA_HOME Product: Tomcat 9 Version: 9.0.x Hardware: PC Status: NEW

[Bug 64644] New: wrong state of WsSession on network outage

2020-08-04 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64644 Bug ID: 64644 Summary: wrong state of WsSession on network outage Product: Tomcat 9 Version: 9.0.31 Hardware: PC OS: Linux Status: NEW Severity: major