We have implemented chunked upload for large files on our server. Client sends a multipart/form-data request with chunking. It works fine using Java Jersey and curl clients as the chunks come in the format specified per HTTP Spec; however, the Apache HttpClient sends chunks not per HTTP Spec: chunks sizes are not at the start of the chunks but rather at the end of the last chunk, the last zero byte chunk is send with the other chunks, etc. Anyone else has seen this issue where Apache HTTPClient does not send chunks per HTTP Spec?
