Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.4.1
-
None
-
None
Description
Following an email thread on the dev mailing list, InvokeHttp currently forces chunked encoding because the content length method of the request body is not overrided (so it returns -1).
To fix and enable configuration, a property to "use chunked encoding" is necessary which will then determine whether or not to implement the content length method.
This line of OkHttp is import: https://github.com/square/okhttp/blob/parent-2.7.1/okhttp/src/main/java/com/squareup/okhttp/Call.java#L263