Open dbaq opened 10 years ago
@clakech Do you have any idea what's going wrong here with the JsonFilter?
This issue seems related to the fact the auto quote encoding mixes up the size computation, leading the missing characters on the HTTP client side. The latest commits in branches 2.3 and master should help fix this issue.
I am facing an issue, I am trying to return a JsonP representation if the callback parameter is present.
To do so I am using the JsonpFilter built in:
Everything looked fine, until I saw that my data was truncated. Just a few characters are missing, that match the number of character added by the filter (test({status:200,body:{)
After the filter, if I get the entity as a text, I've got the whole payload. It looks like the HTTP connection is closed when the size of the entity (before the filter) is reached.
Thanks in advance for your help.