管道损坏(Java、Apache Mina)

发布于 2024-10-19 22:58:30 字数 163 浏览 0 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只是我以为 2024-10-26 22:58:30

服务器反复尝试写入套接字并忽略损坏的管道异常。它应该关闭套接字的末端以响应异常。

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.

梦醒灬来后我 2024-10-26 22:58:30

当您在 IoHandler 中收到损坏的管道异常时,您需要关闭会话。远程对等连接已中断。

when you receive the broken pipe exception in your IoHandler, you need to close the session. The remote peer connection is dead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文