NitroNet icon indicating copy to clipboard operation
NitroNet copied to clipboard

Chat Server failed to start on Windows 8.1

Open logos1 opened this issue 10 years ago • 1 comments

I attempted to get the chat server and client running (as per the examples).

Running on Windows 8.1 using JDK1.8 SE, the server failed with the message "Server has NOT started." as per the following code:

        server = new Server(1337, 1337);
        server.setListener(new ServerListener());
        if (server.isConnected()) {
            System.out.println("Server has started.");
        } else {
            System.out.println("Server has NOT started.");
        }

Any suggestions?

logos1 avatar Nov 13 '15 03:11 logos1

Odd as I have developed this application while working on Windows 8.1. Are you sure that your ports are open and not being used by another application or another instance of the application that you may not realize is running?

jmrapp1 avatar Jul 01 '16 13:07 jmrapp1