I seem to be running into a peculiar problem on Android 1.5 when a library I\'m using (signpost 1.1-SNAPSHOT), makes two consecutive connections to a remote server. The sec
Or, you can set HTTP header in the connection (HttpUrlConnection):
conn.setRequestProperty("Connection", "close");