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

2023-06-28 Thread Daniel Andres Pelaez Lopez
El mié, 28 jun 2023 a las 7:15, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/27/23 15:40, Daniel Andres Pelaez Lopez wrote: > > You are right, the CMAF format of the segment might bring the fragment > size > > information, but as you state, we might need to

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

2023-06-28 Thread Christopher Schultz
Daniel, On 6/27/23 15:40, Daniel Andres Pelaez Lopez wrote: You are right, the CMAF format of the segment might bring the fragment size information, but as you state, we might need to parse the segment as it is being uploaded to figure out the fragment size, that's an option over the table, but

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

2023-06-27 Thread Daniel Andres Pelaez Lopez
El mar, 27 jun 2023 a las 13:48, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/27/23 12:56, Daniel Andres Pelaez Lopez wrote: > > Christopher, > > > > El mar, 27 jun 2023 a las 9:33, Christopher Schultz (< > > ch...@christopherschultz.net>) escribió: > > > >>

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

2023-06-27 Thread Christopher Schultz
Daniel, On 6/27/23 12:56, Daniel Andres Pelaez Lopez wrote: Christopher, El mar, 27 jun 2023 a las 9:33, Christopher Schultz (< ch...@christopherschultz.net>) escribió: Daniel, On 6/26/23 16:15, Daniel Andres Pelaez Lopez wrote: El lun, 26 jun 2023 a las 14:53, Mark Thomas () escribió:

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

2023-06-27 Thread Daniel Andres Pelaez Lopez
Christopher, El mar, 27 jun 2023 a las 9:33, Christopher Schultz (< ch...@christopherschultz.net>) escribió: > Daniel, > > On 6/26/23 16:15, Daniel Andres Pelaez Lopez wrote: > > El lun, 26 jun 2023 a las 14:53, Mark Thomas () > escribió: > > > >> On 26/06/2023 20:34, Christopher Schultz wrote:

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

2023-06-27 Thread Christopher Schultz
Daniel, On 6/26/23 16:15, Daniel Andres Pelaez Lopez wrote: 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

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 > >>

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

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

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