Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have had this issue and sort of found a workaround after doing a weeklong research. Thought to share just in case someone else encounters it.

The issue happens on devices (as I've tested) with Android 2.3.3 and up.

I am using HttpUrlConnection to send and receive data. All seems to work nicely until I leave the device idle for 5-7 minutes. Then all the subsequent requests do send the data, but wait indefinitely for response. When I reset the WiFi connection I get the error

    libcore.io.ErrnoException: recvfrom failed: ETIMEDOUT (Connection timed out) 

for all waiting requests.

Then I am able to normally communicate with the server until after the next idle period.

Reading through the documentation of HttpUrlConnection class, I suspected that the reason could be the recycled Sockets.

I disabled recycling the Sockets by

    System.setProperty("http.keepAlive", "false");

at the very beginning of the app execution. Which will tell the system to discard used sockets when the connection is closed and allocate new ones for new connections.

This seems to have solved the problem for me.

If anyone has had the same issue and have found a better solution without giving up socket recycling optimisation feature of the system, please do share a comment or a solution.

Hopefully, Google will provide a fix or a workaround in the future, if this happens to be a bug.

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.