[android-developers] Re: AndroidHttpClient gone so now what

2008-10-27 Thread jtaylor
For a simple HTTP request just use HttpURLConnection. It's better documented. ..If you need something that it doesn't have, which you probably will know beforehand, then go to Apache. http://code.google.com/android/reference/java/net/HttpURLConnection.html - Juan On Oct 26, 4:50 am, Emery

[android-developers] Re: AndroidHttpClient gone so now what

2008-10-27 Thread Charlie Collins
Yes the root is empty intentionally. I linked all the chapters as you noted chatperX/trunk off of the front page of the site (the one I posted the link for here in this thread). I will try to document that better (put a readme at the trunk root or something), but I did not want to create a

[android-developers] Re: AndroidHttpClient gone so now what

2008-10-26 Thread Mark Murphy
Emery wrote: I have spent hours on end trying to figure out how to make a simple HTTP request in Android. Examples and docs are outdated... nothing works. AGGH! Please help http://hc.apache.org/ is baked into Android. Examples are available on their site:

[android-developers] Re: AndroidHttpClient gone so now what

2008-10-26 Thread Christine
Just a question, httpmime is there, but it's not available for developers. Is there a reason for that? Not that it's a problem, because you can use the apache version, but then you have two copies sitting in your android. Christine On Oct 26, 2:40 pm, Mark Murphy [EMAIL PROTECTED] wrote: Emery

[android-developers] Re: AndroidHttpClient gone so now what

2008-10-26 Thread Sean Sullivan
On Oct 26, 1:50 am, Emery [EMAIL PROTECTED] wrote: I have spent hours on end trying to figure out how to make a simple HTTP request in Android. Examples and docs are outdated... nothing works. AGGH! Please help I built an Android application that uses HttpClient to send HTTP requests to

[android-developers] Re: AndroidHttpClient gone so now what

2008-10-26 Thread Charlie Collins
As Mark noted, use the HttpClient 4 stuff, just like the HttpClient examples demonstrate (he posted the link). If you need more Android specifics, the NetworkExplorer sample application from the upcoming Manning book Unlocking Android does all sorts of HttpClient stuff (HTTP, HTTPS,