Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] running in IE gets error

The exception ...

Caused by: java.io.IOException: An existing connection was forcibly closed by the remote host
        at sun.nio.ch.SocketDispatcher.writev0(Native Method)
        at sun.nio.ch.SocketDispatcher.writev(SocketDispatcher.java:37)
        at sun.nio.ch.IOUtil.write(IOUtil.java:164)
        at sun.nio.ch.SocketChannelImpl.write0(SocketChannelImpl.java:365)
        at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:388)
        at java.nio.channels.SocketChannel.write(SocketChannel.java:360)
        at org.eclipse.jetty.io.nio.ChannelEndPoint.flush(ChannelEndPoint.java:237)
        at org.eclipse.jetty.io.nio.SelectChannelEndPoint.flush(SelectChannelEndPoint.java:229)
        at org.eclipse.jetty.http.HttpGenerator.flushBuffer(HttpGenerator.java:841)

Means that the other side closed the low level connection before it read all of the bytes.
If this was an exception on the server, then the client closed the connection early.

Which version of Jetty and which version of IE?

--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Developer advice, services and support
from the Jetty & CometD experts


On Wed, Feb 13, 2013 at 11:11 AM, fachhoch <fachhoch@xxxxxxxxx> wrote:
link in paste bin  http://pastebin.com/2iXFpmE6





--
View this message in context: http://jetty.4.n6.nabble.com/running-in-IE-gets-error-tp4960026p4960028.html
Sent from the Jetty User mailing list archive at Nabble.com.
_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users


Back to the top