19
votes
4answers
49k views

Android JSON HttpClient to send data to PHP server with HttpResponse

I am currently trying to send some data from and Android application to a php server (both are controlled by me). There is alot of data collected on a form in the app, this is written to the ...
12
votes
4answers
20k views

HonyComb and DefaultHttpClient

In my code I have this Log.d("WFlog (executeRequest)", request.toString()) ; httpResponse = client.execute(request); Log.d("WFlog (execute)", request.toString()) ; running ...
2
votes
1answer
3k views

Getting URL after a redirect using HttpClient.Execute(HttpGet)

I have searched for a while and I am not finding a clear answer. I am trying to log into a webstie. https://hrlink.healthnet.com/ This website redirects to a login page that is not consitent. I have ...
0
votes
1answer
1k views

How to asynchronous perform a httprequest and show the progress of downloading the response

I am trying to perform a http-get-request and show the download progress to the user. I am familiar with the concept of AsyncTask, I also know how to use URLConnection together with ...