I\'m trying to get data from a website and parse it into my android application. Unfortunately I don\'t even get to the part of parsing the data. The code doesn\'t run after the
One problem you have is you are attempting to update the screen (message) from a background thread. Use AsyncTask.publishProgress(...) to let the main thread update the GUI in its onProgressUpdate() method.
Also rather than updating the screen, consider writing log messages Log.d(TAG, "You Are Here.); and watching them in logcat.
This doesn't address the HTTP issue, but clear this up first to be sure you are not causing a hang by changing the screen in a background thread.