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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can easily make up the request on your own:
This request is split into three parts, and your server should receive
q=23456789012345678901234as the POST data.Note: you need another CRLF at the end of the request, which this markup language cannot display.