I am trying to connect (through TCP) to the server running on my machine from the Android device. I have android.permission.INTERNET in my manifest file:

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

I am able to connect using emulator but trying from the device throws an error:
Android Socket: java.net.SocketException: No route to host

Can anyone please help.

link|improve this question

51% accept rate
How do you access your computer from the device? By Wi-Fi or USB? What IP do you use to connect to the computer from Android? – Idolon Oct 26 '11 at 16:10
hi, I ma using WIFI. Ip address is what I am getting using ipconfig: IPv4 Address. . . . . . . . . . . : 192.168.1.114 – Android_enthusiast Oct 26 '11 at 16:14
Can you reach for example web-server started on your computer (using Browser on your phone)? If no - then it is a network configuration issue, not a programming one. – Idolon Oct 26 '11 at 16:20
when I try in my browser 192.168.1.114:55555 it shows blank page(expected). SO I dont think this is n/w issue. Is this related to firewall ? – Android_enthusiast Oct 26 '11 at 16:38
Why is blank page expected? Can you start web-server on your computer (Tomcat or IIS) and access it from the device Browser? Also check on your router whether Android device has received IP address in the same subnet as your computer. – Idolon Oct 26 '11 at 19:49
feedback

2 Answers

Your 192.168.1.114 address is a DHCP address (dynamically) assigned by your router to your PC. As a result it is visible to the emulator.

But depending on how your WiFi is set up, the Android is probably on a different router / subnet and can't see 192.168.1.114. You could check that by typing 192.168.1.114 into the address bar of the Android browser.

If 192.168.1.114 is not visible to your Android, then you will have to either change the routing rules on your router to make it visible, or add a DNS lookup for it.

link|improve this answer
feedback

I had the same problems. It turned out my Win7 firewall was blocking the connection.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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