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 am trying to stream an byte buffer through socket connection.

Its not making connection with the server.I have added Internet & ACCESS_NETWORK_STATE permission to manifest file.

Here is my socket code :

int port = 80;

System.out.println("Connecting to " + ServerUrl.url_audio_call + " on port " + port);
Socket client = new Socket("http://192.168.1.1/call", port);
System.out.println("Just connected to " + client.getRemoteSocketAddress()); 
OutputStream outToServer = client.getOutputStream();
DataOutputStream out = new DataOutputStream(outToServer);
out.write(bData);

LogCat error :

01-22 12:07:03.990: I/System.out(14688): Connecting to http://192.168.1.1/call on port 80
01-22 12:07:03.990: W/System.err(14688): java.net.UnknownHostException: Unable to resolve host "http://192.168.1.1/call": No address associated with hostname
01-22 12:07:03.990: W/System.err(14688):    at java.net.InetAddress.lookupHostByName(InetAddress.java:400)
01-22 12:07:03.999: W/System.err(14688):    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:242)
01-22 12:07:03.999: W/System.err(14688):    at java.net.InetAddress.getAllByName(InetAddress.java:220)
01-22 12:07:03.999: W/System.err(14688):    at java.net.Socket.tryAllAddresses(Socket.java:108)
01-22 12:07:03.999: W/System.err(14688):    at java.net.Socket.<init>(Socket.java:177)
01-22 12:07:03.999: W/System.err(14688):    at java.net.Socket.<init>(Socket.java:149)
01-22 12:07:03.999: W/System.err(14688):    at com.audio_demo.Audio_Call.sendRec(Audio_Call.java:447)
01-22 12:07:03.999: W/System.err(14688):    at com.audio_demo.Audio_Call.access$0(Audio_Call.java:383)
01-22 12:07:03.999: W/System.err(14688):    at com.audio_demo.Audio_Call$2.run(Audio_Call.java:374)
01-22 12:07:03.999: W/System.err(14688):    at java.lang.Thread.run(Thread.java:856)

Can anyone help me out.Where I am going wrong.

share|improve this question
3  
did u checked the url through browser? – R9j Jan 22 at 7:04
3  
can you check with this only client = new Socket("192.168.1.1", port); – juned Jan 22 at 7:07
Your exception doesn't match your code. – EJP Jan 22 at 7:39
@EJP what Error I have got. posted that. – TechEnd Jan 22 at 8:10
@juned : thanks got solved. I was taking 192.../call removed /call.. this works fine – TechEnd Jan 22 at 8:13

closed as too localized by EJP, IceMAN, Rory McCrossan, Muhammad Reda, bipen Jan 22 at 14:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 4 down vote accepted

"http://192.168.1.1/call" is an URL, "192.168.1.1" is an IP. so you are passing wrong argument, the program cannot understand...

share|improve this answer
Thanks got solved – TechEnd Jan 22 at 8:12

I think your system is not able to connect to 192.168.1.36. But from your code I understand that you are trying to connect to ip address 192.168.1.1. Your router is forwarding that request to host with IP address 192.168.1.36.

Try to ping 192.168.1.36, if it is giving "Destination host unreachable" message then it means there is no machine with IP address 192.68.1.36.

Your problem will solve if you give a correct IP address that can be pinged from your command prompt.

Hope it helps.

share|improve this answer
1. His exception doesn't agree with his code,but the actual problem is that he is providing a URL instead of a hostname. 2. 'Destination unreachable' doesn't mean the target doesn't exist: it means there is no route to it. 3. The ability to ping a host is no guarantee that a TCP connect to a specific port will succeed. -1 – EJP Jan 22 at 7:41

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