setSoTimeout!

In the source file SocketClient.java starting at line 219 one can find:

  try

    socket.setSoTimeout(300000); // FIXME for debugging only
  } catch (SocketException ex)

    ex.printStackTrace();
  }

But setSoTimeout() is very important for a correct working of Jigsaw (I
described the problem in an earlier EMail). So I suggest to use these lines
instead:

  try {
    socket.setSoTimeout(server.getRequestTimeOut());
  } catch (SocketException ex) {
    server.errlog("Unable to set socket timeout!");
  }

Wolfgang

Received on Tuesday, 12 January 1999 05:54:53 UTC