Daniel Egger a écrit :
It turns out that the problem does not seem to be on the network side...
Well, that's a good news, somehow. The error you get sounds so weird,
that I rather prefer to see it as a pb on your client :)
Is it really the case that the server only actually sends the message
after a write on a session when the Mina session on the client side
actually reads the buffer?
The pb is that the server depends on the socket to be ready for write in
order to write some more data. This is an issue you have to deal with
when writing servers, it's known as the 'slow client' issue : if clients
aren't fast enough to read the data the server writes back, at some
point, it can swamp the whole server. Malevolent clients can also send
thousands of requests without ever reading the response, for the same
result...