Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a persistent http connection in my android application. Since the backend responses are configured for Keep-Alive.

I would like to know how to make persistent http connections in Android in order to avoid handshake request everytime.

share|improve this question

1 Answer

up vote 0 down vote accepted

Set the header to include a keep-alive request.

HttpURLConnection conn = (HttpURLConnection) mURL.openConnection();
conn.setRequestProperty("Connection","Keep-Alive");
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.