Tagged Questions
1
vote
1answer
575 views
Chunked transfer encoding … example HTML document
I would like to know how to implement a chunked HTML document. How it looks? Can anyone post an example of an chunked HTML ducument, because I can't understand how to prepare my HTML document for ...
1
vote
1answer
527 views
Chunked encoding and content-length header
Is it possible to set the content-length header and also use chunked transfer encoding? and does doing so solve the problem of not knowing the length of the response at the client side when using ...
0
votes
1answer
233 views
Java REST Chunked Encoding
I'm trying to read some information with a REST-Service that uses chunk-encoding.
String encodedURL = URLEncoder.encode(url, "UTF-8");
WebClient client = ...