Simon, > On 15 May 2018, at 14:25, Simon Roberts <si...@dancingcloudservices.com> > wrote: > > ... > I'm running on Linux, not Mac, and t's just a thrown together node.js server. > I guess that means the real bug is probably in node, though one would think > that the Java implementation should be robust enough to at least not crash (
To be clear, this is NOT a crash ( in Java terms ). The exception, " java.io.EOFException: EOF reached while reading”, that you are seeing is conveying the message that and unexpected end-of-file(stream) has been reached while received data. This appears to be correct as per Joacim’s observation. Silently ignoring, or otherwise not reporting, the unexpected EOF, would be incorrect and considered a bug. -Chris.