Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tomcat 7 , Spring rest template application producing err_invalid_chunked_encoding in browser

I have a Tomcat 7 , Spring 4.2 'RestController' implementation of REST API which seems to produce 'ERR_INVALID_CHUNKED_ENCODING' for few API calls on returning a JSON response.

It is the same code that creates a ResponseEntity. But for few API calls the "Content-Length" is set properly and other calls the "Transfer-Encoding" is set as Chunked.

private CacheControl cacheControl = CacheControl.noStore().mustRevalidate();    

protected <T> ResponseEntity<TNRestResponse<T>> createEntity(TNRestResponse<T> res) {
        return ResponseEntity.ok().cacheControl(cacheControl).body(res);
}

The weird part is the response for the same API call that creates ERR_INVALID_CHUNKED_ENCODING seems to work fine in another environment. The only difference is the client and service is running in the same server in the problematic scenario.

The solution already tried is to set the Content-Length manually which seems to result to premature end of file on the client.The JSON length is only around 468 characters but client receives only 409 characters , even though server logs shows that the full response has been sent and connection is closed.

We are so lost at the solution for this problem because it is the same code acting strangely in different environment.I tried to check the compression settings in server.xml on both the tomcat.But everything looks fine.

Also disabled the proxy setting in both IE and chrome.

Any helpful inputs or insights would be really good ? Thanks in advance.

like image 933
Krithika Vittal Avatar asked Apr 10 '18 02:04

Krithika Vittal


1 Answers

Follow these steps:

1) Go to your OS's Control panel > internet options > Connections > LAN Settings or to your browser settings.

2) Deselect "Use Proxy" for your LAN or for your browser.

ERR_INVALID_CHUNKED_ENCODING

Original answer

Another original answer

like image 183
Oleksii Kyslytsyn Avatar answered Sep 28 '22 08:09

Oleksii Kyslytsyn