I have 2 servers - a chat server and world server. Both are connected to clients on different ports. I want to set up a unique port for just the world server to communicate with the chat server. I want the world server acting as a client to the chat server.
How would I go about doing this? I know how to set up 1 port but not mulltiple
This is the basic setup of the servers I have:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| try { this.serverSocket = new ServerSocket(this.port); this.listening = true; while (listening) { Socket socket = this.serverSocket.accept(); socket.setTcpNoDelay(true); DebugConsole.print("Client connection from " + socket.getRemoteSocketAddress(), "General"); PacketAction socketConnection = new PacketAction(socket, this); socketConnection.start(); this.clientConnections.add(socketConnection); }; } catch (Exception e) { DebugConsole.print("Exception (run): " + e.getMessage(), "Error"); } |