i have already search this topic and still don\'t know how to make it work :( I have a SOAP web service (ASP.NET), and this address (on my localhost) is http://localhos
Use Http Connection
HttpClient httpclient = new DefaultHttpClient(); HttpGet httppost = new HttpGet("http://localhost/"); HttpResponse response = httpclient.execute(httppost); HttpEntity ent=response.getEntity(); InputStream is=ent.getContent();