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 wrote apss to mu Phone with Android. I debug it on phone. I try to connection with serwer wrote in C# but every times where I try to connect I have exception

no route to host

I add to manifest

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

My code to connect:

try
        {

        InetAddress serverAddr = InetAddress.getByName(IP);
        int PortI = Integer.parseInt(Port);

            socket = new Socket(serverAddr, PortI);
share|improve this question
where is your server ? – njzk2 Jan 28 at 16:45
my server is in lan on my pc adress 192.168.0.102 – user1678400 Jan 28 at 16:51
your android is an emulator ? – njzk2 Jan 28 at 16:54
no I debug on device (Galaxy Ace) – user1678400 Jan 28 at 16:56

1 Answer

Try this!

  1. Check your device is connected with internet which make request to server and on same network when testing in LAN network.

  2. Check you have disabled the firewall of server if you are connected in LAN.

  3. Check the URL where you are sending request.

share|improve this answer
My device is connected with internet. I use WifiManager wifimanagerr = (WifiManager)getBaseContext().getSystemService(Context.WIFI_SERVICE); if(wifimanagerr.isWifiEnabled()) { MyAddress = Formatter.formatIpAddress(wifimanagerr.getConnectionInfo().getIpAddress()); this.showContext(MyAddress); }else { showContext("Włącz WIFI"); } And I show my Adress IP like 192.168.0.104 – user1678400 Jan 28 at 16:41
@user1678400 Check whether its connecting in browser or not. – TGMCians Jan 28 at 16:43
I can surf on internet using browser. – user1678400 Jan 28 at 16:46
Not internet open browser and open the url of web service of server then check it. Its running or not. – TGMCians Jan 28 at 16:47
what services? I wrote server i C# as windows application – user1678400 Jan 28 at 16:50
show 6 more comments

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.