Chunked transfer encoding is a data transfer mechanism in version 1.1 of the Hypertext Transfer Protocol (HTTP) in which a web server serves content in a series of chunks.
Questions tagged [transfer-encoding]
142 questions
0
votes
1 answer
Remove transfer encoding in Http Request
I am sending one SOAP request. It uses the encoding type as Trasfer-encoding chunked.
The request is not sent properly. I think some issue with content encoding.
Empty Request is sent. I am getting 500 error from server.
"Content-Type: text/xml;…

Patan
- 17,073
- 36
- 124
- 198
0
votes
1 answer
Set HttpResponseMessage headers from within the Get method of my controller
I have a REST service using Web API 2.0 and MVC 5. My controller derives from EntitySetController. I have a Get method that returns the resource as an IQueryable. My question is how do I access the HttpResponseMessage object from within the Get…

Saurabh
- 41
- 4
0
votes
3 answers
What is the encoding of an .eml file from IIS's SMTP server?
I need to write a program that read the .eml files from IIS's mail drop box, but I can't find a definitive source that tells me the encoding of the .eml files. Is there a specification somewhere that tells me the encoding of the files, or do I just…

Mike Comstock
- 6,640
- 10
- 36
- 41
0
votes
3 answers
How should Transfer-encoding: chunked be rendered?
When a browser renders data that was trasfered using chunked encoding that the browser should render the origional data without the chunk size and CRLFs added to encode the data, correct?
Using this code as an…

user2046021
- 1
- 1
- 2
0
votes
1 answer
Issue with Content-Transfer-Encoding
I have a problem here. I created a mail() PHP script to send attachments and you would normally send in your regular email provider. The problem is that I can only send files up to a certain number of characters. For example I can send a file with…

user1349773
- 5
- 1
- 1
- 6
-1
votes
1 answer
How to disable/setup transfer-encoding in varnish?
Varnish responds with Transfer-Encoding: chunked for ESIed pages, but this does not work for some proxies(squid). I want to disable transfer-encoding for ESI.

shenyan
- 408
- 4
- 9
-5
votes
1 answer
Go http client doesn't automatically dechunk body
I'm streaming http from Go and the server responds with "Transfer-Encoding: chunked" as expected. And I've been told that the http client in Go shall automatically dechunk the body from the http response, removing the \r\n. But in my case it isn't…

Lalle
- 676
- 12
- 30