I'm attempting to receive a message from another computer, with a simple chat client.
I'm getting this error in the Console:
Starting Listener.......
Could not listen on that port
error: null
I get this in the Console when I send text over.
Here's my code
import java.io.*;
import java.net.*;
class TCPServer
{
public static void main(String argv[]) throws Exception
{
System.out.println("Starting Listener.......");
try{
ServerSocket welcomeSocket = new ServerSocket(5060);
while(true)
{
//
// Read a message sent by client application
//
Socket clientSocket = welcomeSocket.accept();
ObjectInputStream ois = new ObjectInputStream(clientSocket.getInputStream());
String message = (String) ois.readObject();
System.out.println("Message Received: " + message);
}
}
catch (IOException e) {
System.out.println("Could not listen on that port");
System.out.println("error: "+e.getMessage());
System.exit(-1);
}
}
}
Can anyone see what I'm doing that's causing that null value? For that matter, what's causing the catch exception when I send a text string over.