Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Daniel Andres Pelaez Lopez
El lun, 26 jun 2023 a las 14:53, Mark Thomas () escribió: > On 26/06/2023 20:34, Christopher Schultz wrote: > > Daniel, > > > > On 6/26/23 12:47, Daniel Andres Pelaez Lopez wrote: > >> Hi Tomcat community, > >> > >> I have a requirement where we want to manually decode a Chunked Transfer > >> Enco

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Mark Thomas
On 26/06/2023 20:34, Christopher Schultz wrote: Daniel, On 6/26/23 12:47, Daniel Andres Pelaez Lopez wrote: Hi Tomcat community, I have a requirement where we want to manually decode a Chunked Transfer Encoding (CTE) stream using CoyoteInputStream to have access to the chunk size. This means I

JSP servlet gets tired after a while

2023-06-26 Thread Christopher Schultz
All, Just saw this in production. We resolved it by bouncing the server because we needed to use it :) This is Tomcat 8.5.89. > Exception: java.lang.NullPointerException Stack Trace: > java.lang.NullPointerException: (no message) > org.apache.jasper.JspCompilationContext.createOutputDir(JspC

Re: Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Christopher Schultz
Daniel, On 6/26/23 12:47, Daniel Andres Pelaez Lopez wrote: Hi Tomcat community, I have a requirement where we want to manually decode a Chunked Transfer Encoding (CTE) stream using CoyoteInputStream to have access to the chunk size. This means I want to use CoyoteInputStream.read method and ge

Re: problem with SSL connection java.security.NoSuchAlgorithmException: Error constructing implementation

2023-06-26 Thread Christopher Schultz
Ivano, On 6/8/23 06:10, Ivano Luberti wrote: Hi, all I have the following problem. [snip] My guess is that looking at the code in this general area would be helpful. If you are able to add debug logging in there to spoit-out some of the crypto configuration being used, I'm sure it would hel

Tomcat 10.1.x: Using CoyoteInputStream to read a Chunked Transfer Encoding (CTE) stream, manually, skiping ChunkedInputFilter

2023-06-26 Thread Daniel Andres Pelaez Lopez
Hi Tomcat community, I have a requirement where we want to manually decode a Chunked Transfer Encoding (CTE) stream using CoyoteInputStream to have access to the chunk size. This means I want to use CoyoteInputStream.read method and get the whole CTE bytes. Saying it in another way: we want to dec