[android-beginners] Re: HTTP Connect Problem

2009-10-12 Thread Indicator Veritatis
On Oct 9, 11:22 pm, Samuh samuh.va...@gmail.com wrote: If I am interpreting you correctly, you can do something like(pseudo code): //create an instance of HttpClient class HttpClient httpclient = new DefaultHttpClient(); // Prepare a request object HttpGet httpget = new HttpGet(url);

[android-beginners] Re: HTTP Connect Problem

2009-10-10 Thread Samuh
If I am interpreting you correctly, you can do something like(pseudo code): //create an instance of HttpClient class HttpClient httpclient = new DefaultHttpClient(); // Prepare a request object HttpGet httpget = new HttpGet(url); // Execute the request HttpResponse response =

[android-beginners] Re: HTTP Connect Problem

2009-10-10 Thread jbrohan
Here is an example of this http://www.androidsnippets.org/snippets/36/ On Oct 10, 2:22 am, Samuh samuh.va...@gmail.com wrote: If I am interpreting you correctly, you can do something like(pseudo code): //create an instance of HttpClient class HttpClient httpclient = new DefaultHttpClient();