InputStream inStream = null;
OutputStream outStream = null;
try {
inStream = clientConn.getInputStream();
outStream = clientConn.getOutputStream();
}
catch (IOException e) {
System.out.println("RunnableSolverServer: Error getting I/O streams.");
System.exit(1);
}
RunnableSolver s = new RunnableSolver(inStream, outStream);
Thread t = new Thread(s);
t.start();