Re: Unexpected behavior of dead-simple servlet

2025-06-20 Thread Mark Thomas
On 19/06/2025 16:56, Christopher Schultz wrote: 2. Try remote debugging? I'd love to, but what am I looking for? If I had seen the "committed" flag set to "true" at some point, I would look for a value-change as a trigger to see what's causing it. I just commented-out everything in the F

Re: Unexpected behavior of dead-simple servlet

2025-06-19 Thread Christopher Schultz
Konstantin, On 6/18/25 6:08 PM, Konstantin Kolinko wrote: A quick review of all Filters that are running tells me that there are a few that can set response headers, but mostly are not in this particular case. The list of headers coming back in the response are: HTTP/1.1 200 Via: HTTP/1.1

Re: Unexpected behavior of dead-simple servlet

2025-06-18 Thread Konstantin Kolinko
> > >> > > A quick review of all Filters that are running tells me that there are a > few that can set response headers, but mostly are not in this particular > case. The list of headers coming back in the response are: > > HTTP/1.1 200 > Via: HTTP/1.1 1 > Transfer-Encoding: chunked > Date: Wed, 1

Re: Unexpected behavior of dead-simple servlet

2025-06-18 Thread Christopher Schultz
Mark, On 6/18/25 11:02 AM, Christopher Schultz wrote: Mark, On 6/18/25 3:08 AM, Mark Thomas wrote: On 17/06/2025 21:13, Christopher Schultz wrote: All, I recently wrote a relatively simple Servlet (which is less and less common these days with frameworks, etc.) and I was surprised that I g

Re: Unexpected behavior of dead-simple servlet

2025-06-18 Thread Christopher Schultz
Mark, On 6/18/25 3:08 AM, Mark Thomas wrote: On 17/06/2025 21:13, Christopher Schultz wrote: All, I recently wrote a relatively simple Servlet (which is less and less common these days with frameworks, etc.) and I was surprised that I got a chunked response. It's not interfering with the

Re: Unexpected behavior of dead-simple servlet

2025-06-18 Thread Mark Thomas
On 17/06/2025 21:13, Christopher Schultz wrote: All, I recently wrote a relatively simple Servlet (which is less and less common these days with frameworks, etc.) and I was surprised that I got a chunked response. It's not interfering with the operation of the servlet or the client, but w

Unexpected behavior of dead-simple servlet

2025-06-17 Thread Christopher Schultz
All, I recently wrote a relatively simple Servlet (which is less and less common these days with frameworks, etc.) and I was surprised that I got a chunked response. Here is the entirety of the servlet code: public class HtlloWorldServlet extends HttpServlet { @Override public vo