I\'m struggling with the following problem: My App makes sequence of requests to the http server using HttpClient. I use HttpPut for sending data to the server. First reques
Sounds like you don't consume the entity after you finish handling the response. Ensure you put the following code in the finally block:
finally
if (httpEntity != null) { try { httpEntity.consumeContent(); } catch (IOException e) { Log.e(TAG, "", e); } }
I suggest you read the HttpClient Tutorial.