[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-07 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 Mark Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 --- Comment #6 from adwsingh --- To be clear I don't expect the async and sync version to work the same way. I do however expect to be able to achieve the same result using async that I was able to do using sync. -- You are receiving this

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 --- Comment #5 from adwsingh --- @remm is there a way to do it in a non-blocking fashion then? I want to send back a 408 on a SocketTimeoutException while reading the request. -- You are receiving this mail because: You are the assignee for

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-02 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 Remy Maucherat changed: What|Removed |Added Severity|blocker |normal --- Comment #4 from Remy

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-01 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 --- Comment #3 from adwsingh --- @markt do you know why we check here [1] if its an asyncError and only then choose to process the SocketEvent? [1]

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-11-01 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 --- Comment #2 from adwsingh --- @markt do you know why we check here [1] if its an asyncError and only then choose to process the SocketEvent? [1]

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-10-31 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 adwsingh changed: What|Removed |Added CC||adwsi...@gmail.com -- You are receiving

[Bug 68037] Async Servlet implementation doesn't allow setting a response status

2023-10-31 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=68037 --- Comment #1 from adwsingh --- I traced the problem to this line in AbstractProcessor : https://github.com/apache/tomcat/blob/9.0.x/java/org/apache/coyote/AbstractProcessor.java#L121 This will not dispatch if the container thread is the one