I am creating socket using socket = new Socket(host, port, InetAddress.getLocalHost(), clientPort);
. I want the socket to listen to particular port at client side. But when I use InetAddress.getLocalHost()
I get java.net.ConnectException: connect: Address is invalid on local machine, or port is not valid on remote machine
.
But when I use InetAddress.getByName("localhost")
it works fine. But I require IP address of the machine in server side. So when I use socket.getInetAddress()
I want ipadress and not 127.0.0.1.
Can anyone please help. I am using eclipse. Can this be a firewall issue?
Thanks
Sounds like confusion over client-side and server-side responsibilities - sounds like you're trying to get two Java applications talking to each other on the same host via TCP/IP, using Java Sockets.
If this is the case you first need to use a ServerSocket in the 'server' application to create a listening socket on all interfaces:
You should then be able to connect to the ServerSocket from the 'client' application by using a Socket to connect to the localhost:
The following page(s) looks like they cover this in detail:
All About Sockets
Hope that helps.