Re: [android-developers] Asynchronous Http Request

2010-06-01 Thread Martins Streņģis
Mark you forgot while(1){ HttpGet get = new HttpGet(http://www.microsoft.com;); } :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Asynchronous Http Request

2010-05-31 Thread John Gaby
I am trying to figure out how to make HTTP get requests. The following is what I have so far: HttpGet get = new HttpGet(http://www.microsoft.com;); HttpClient client = new DefaultHttpClient(); HttpResponse response; try { response =

Re: [android-developers] Asynchronous Http Request

2010-05-31 Thread Mark Murphy
John Gaby wrote: I am trying to figure out how to make HTTP get requests. The following is what I have so far: HttpGet get = new HttpGet(http://www.microsoft.com;); HttpClient client = new DefaultHttpClient(); HttpResponse response;