On 12.12.2010 19:09, Konstantin Preißer wrote:
I have one additional question about the ISAPI Redirector (I have chunked
encoding enabled):

In my isapi redirector's log, a lot of lines look like this (I removed the
date prefix):

[1764:3472] [error] iis_write::jk_isapi_plugin.c (1297): Vector write of
chunk encoded response failed with 10054 (0x00002746)
[1764:10596] [error] iis_done::jk_isapi_plugin.c (1389): Vector termination
of chunk encoded response failed with 10054 (0x00002746)
[1764:3472] [error] iis_done::jk_isapi_plugin.c (1389): Vector termination
of chunk encoded response failed with 10054 (0x00002746)
[1764:10596] [error] iis_write::jk_isapi_plugin.c (1297): Vector write of
chunk encoded response failed with 10054 (0x00002746)

What do these errors messages mean?

10054 is a winsock error code, so in this case we got "WSAECONNRESET". Citing from http://msdn.microsoft.com/en-us/library/ms740668%28v=vs.85%29.aspx:


Connection reset by peer.

An existing connection was forcibly closed by the remote host. This normally results if the peer application on the remote host is suddenly stopped, the host is rebooted, the host or remote network interface is disabled, or the remote host uses a hard close (see setsockopt for more information on the SO_LINGER option on the remote socket). This error may also result if a connection was broken due to keep-alive activity detecting a failure while one or more operations are in progress. Operations that were in progress fail with WSAENETRESET. Subsequent operations fail with WSAECONNRESET.


If the response takes long to produce, or your browser GUI is difficult to handle I would expect the user had already klicked on another link or pressed another button (or sent a form twice, once wth "Return" and then using the mouse).

Regards,

Rainer

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to