Hello everybody.
I'm looking for something,I don't know if it exists.
I have a Java server, something like
while (true) {
try {
Socket socket = server.accept();
new ConnectionHandler(socket);
System.out.println("Waiting for a new client message...");
} catch (IOException e) {
e.printStackTrace();
}
}
What I need, is to do a unix client to connect to this server. I need only to send a message, and my server will launch a process. Is there a way to build a unix client ?
Thanks alot.