I've got some trouble downloading a webpage's HTML (see this question: Android: Downloading HTML not always working).
In my code, I use this method:
HttpConnectionParams.setConnectionTimeout(my_httpParams, 3000);
I'm not really sure what it means. Does this mean that if it takes longer than 3000 millis to download the HTML file (for which I use it), it stops? Or does it mean something else?
Also, what it the difference between that method and setSoTimeout
?