I\'m using HttpURLConnection on Android KitKat to POST some data to a server. The server takes a long time to respond, and the connection is silently retry
HttpURLConnection
For POST calls set
httpURLConnection.setChunkedStreamingMode(0);
and this should fix the silent retries. The bug report and workaround can be found here.