Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
58 views

tRPC when used on client side with .useMutation() hook sends duplicate Transfer-Encoding: chunked header Link to reproduction: https://github.com/DownDev/trpc-bug To reproduce run using: docker ...
Miki 15's user avatar
0 votes
0 answers
101 views

While studying NodeJS fetch failed (object2 is not iterable) when uploading file via POST request I learned that web servers do not generally support chunked HTTP/1.1 requests (they do return chunked ...
Heiko Theißen's user avatar
0 votes
0 answers
112 views

My application has been in production for several months and everything worked fine. Howwever, since February 24, 2023, whenever it deletes a calendar event via DELETE /me/calendars/{id}/events/{id}, ...
Jens Bannmann's user avatar
0 votes
1 answer
386 views

Please note I'm new to APIs and ORDS. I've created a few APIs with Oracle Rest Data Services (ORDS) which returns 30,000 records at a time. I've noticed in the return header that Transfer-Encoding is ...
JacquesB's user avatar
0 votes
0 answers
1k views

I have a simple HTTP server written in golang using echo v4. When the response size is bigger than a certain size (threshold is 2.12K as I have tested), server sets the Transfer-Encoding header to ...
Zeinab Abbasimazar's user avatar
2 votes
0 answers
3k views

Currently, I am consuming a streaming API(transfer-encoding: 'chunked') and using the data in each chunk to render the UI as and when new chunk is received. When I check the timings tab under network ...
nole's user avatar
  • 581
0 votes
1 answer
434 views

Here is the PHP code for pg3.php: <html> <body> <form method="post" action="pg3.php"> <h2><font color="red">::Welcome to Server1: 172.16.24....
mehran_2020's user avatar
1 vote
0 answers
2k views

I'm trying to understand whether I'm missing something or whether it's a limitation in HttpWebRequest setting the TransferEncoding value to chunked. The below code works perfectly fine, as long as I ...
Domitius's user avatar
  • 485
0 votes
0 answers
50 views

I have a website where users need to see a link to download a file (approximately 100 MB size) only after authenticating (userid/password) themselves in the website. Users should not be able to copy ...
yathirigan's user avatar
  • 6,139
0 votes
1 answer
892 views

I am working on an analytic API for small ML project. I have created an endpoint, which uses Flask's stream_with_context function like in the example below: def post(): # some logic [...]...
mik0w's user avatar
  • 156
1 vote
1 answer
1k views

I have a server A that uses Httpcore, HttpcoreNIO for HTTP communications. I have written a Simple Java Socket Server B to use as a backend. public void run() { String expectedResponse = "...
Arunan 's user avatar
  • 3,524
1 vote
0 answers
78 views

I was trying to make a download manager that supports resume. My app uses the cookies and headers got from Chrome browser via an extension that I have. I faced a problem when I tried to send partially ...
Ali Tor's user avatar
  • 3,025
0 votes
1 answer
1k views

I am working on my HTTP server and I applied chunked transfer encoding to my responses if the requested file is larger than 64K. It works fine with Firefox, I can even send large videos, but Chrome ...
Olexandr Kulinich's user avatar
1 vote
2 answers
400 views

I'm writing function for send request and get response of websites and parse of content of it... but when i send request to persian sites it cant decode content of it def gather_links(page_url): ...
ali frd's user avatar
  • 43
1 vote
1 answer
8k views

I am using WINC1500 WiFi (with Arduino) to connect to a server (https) and to send some API requests. In the header I send: POST /api/myapi.php HTTP/1.1 Host: myserver.com Accept: application/json, ...
Junior's user avatar
  • 567
2 votes
0 answers
2k views

I am having @RestController with endpoint like below (spring-boot version 1.5.9.RELEASE) @RestController public class Controller { @PostMapping(value = "profile", consumes = MediaType....
Raashith's user avatar
  • 165
4 votes
1 answer
12k views

Situation I am using HttpClient (System.Net.Http, Version=4.2.1.0) to POST an HTTP request with multipart form data to a web API. The form data includes a string parameter (benchmark) and a file (...
MattEvansDev's user avatar
2 votes
1 answer
3k views

I have a situation like this.A SOAP request is sent from an application to our server. The request works fine when testing locally but always fails when testing live on the dev server. The ...
kopz's user avatar
  • 804
2 votes
2 answers
3k views

Configuration Rails: 4.2.7.1 Puma: 3.8.2 -- Transfer-Encoding: chunked I've been unable to make this work and unable to find a definitive answer: in the above configuration, I want to stream ...
Publius's user avatar
  • 53
1 vote
1 answer
2k views

Business service gives transfer-encoding as 'chunked' even though the 'use chunked streaming mode' is disabled in the http Transport configuration. As part of one of our requirements we need the ...
sanjay kumar's user avatar
8 votes
1 answer
2k views

I have a Tomcat 7 , Spring 4.2 'RestController' implementation of REST API which seems to produce 'ERR_INVALID_CHUNKED_ENCODING' for few API calls on returning a JSON response. It is the same code ...
Krithika Vittal's user avatar
4 votes
0 answers
2k views

when I attempt compress a response with zlib nodejs express changes the headers. Code: var acceptEncoding = req.headers['accept-encoding']; if (!acceptEncoding) { acceptEncoding = ''; } ...
user5731385's user avatar
1 vote
1 answer
785 views

I am authoring a service with a REST API, that gives people the ability to upload certain kinds of documents. I would like these documents to be compressed during upload (for bandwidth reasons) but ...
user9476940's user avatar
1 vote
1 answer
5k views

Does golang's net/http package support requests with chunked transfer-encoding? Thus far I have been able to use the Hijacker interface (https://golang.org/src/net/http/server.go?s=6173:6875#L156) to ...
thinkski's user avatar
  • 1,322
6 votes
2 answers
2k views

I'm trying to send some data to a web service which requires the "Transfer-encoding: chunked" header. It works fine with a normal POST request. But as soon as I add the header, I always get: The ...
sph's user avatar
  • 71