Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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://localhost:50473/Service1.asmx

then i have soap client on my android device, i want to connect to use service from server. Many people said that i can't connect through usb cable, and i have to connect to the same wifi network and use the internal IP.
Ok, now my laptop and android device both connect to the wifi network,
my laptop got 192.168.43.17
my android device got 192.168.43.26

So how can the device connect to the SOAP server above ?
from my device, i use 192.168.43.17:50473/Service1.asmx but no luck :(

share|improve this question

2 Answers

up vote 2 down vote accepted

You need to set uses-permission - android.permission.INTERNET in AndroidManifest.xml and also test that (http://192.168.43.17:50473/Service1.asmx) url on web-browser.

share|improve this answer
if the 192.168.43.17:50473/Service1.asmx is working neither laptop nor android device, what's wrong ? – Trần Đức Anh Apr 25 '12 at 4:18
Elaborated here : stackoverflow.com/a/16510143/644011 – Sanjay Kumar May 14 at 7:12

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();
share|improve this answer
Do you think it work ? – Trần Đức Anh Apr 25 '12 at 9:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.