管道损坏(Java、Apache Mina)
我在使用 Apache Mina 和 flash(客户端/服务器游戏)时遇到问题。
当用户通过任务管理器(或 IDE 中的 Flash 播放器)关闭浏览器进程时,服务器会抛出无限异常“Java.io.BrokenPipe”。
更改 O/S TCP/IP 设置(保持活动)不起作用。
I have a problem using Apache Mina with flash (client/server game).
When user closes his browser process via task manager (or Flash player in IDE), server throws infinitely exceptions "Java.io.BrokenPipe".
Changing O/S TCP/IP settings (keep-alive) didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
服务器反复尝试写入套接字并忽略损坏的管道异常。它应该关闭套接字的末端以响应异常。
The server is repeatedly try to write to the socket and ignoring the broken pipe exception. It should close its end of the socket in response to the exception.
当您在 IoHandler 中收到损坏的管道异常时,您需要关闭会话。远程对等连接已中断。
when you receive the broken pipe exception in your IoHandler, you need to close the session. The remote peer connection is dead.