I am writing a http server in java using ServerSocket and Socket respectively.
In specification it says that the request can be of "chunked" type. So how could I enable this option in any browser to test the parsing of the request?
|
|
|
You can easily make up the request on your own:
This request is split into three parts, and your server should receive Note: you need another CRLF at the end of the request, which this markup language cannot display. |
|||
|
|
|
AFAIK most desktop browsers don't send chunked requests because some web servers don't handle them correctly (or at all) and it's easier to calculate the length than to detect/guess/remember which servers support it. The curl command-line tool can send chunked requests:
|
|||
|
|