red5 客户端断开连接不起作用:S
我一直在使用 Red5 0.9.0.1,并且我试图断开 Flash 客户端应用程序与我的 red5 服务器应用程序的连接。我已经通过使用 close() 手动断开客户端连接;在我的 Flash 应用程序上。但当用户关闭 Windows 资源管理器或用户失去互联网连接时,我无法实现断开用户连接。 关于如何做到这一点有什么建议吗?有人可以引导我走上正确的道路吗?
I've been using Red5 0.9.0.1, and im trying to disconnect a flash client app from my red5 server app. I've achived to manually disconnect the client by using close(); on my flash app. but I cant just achieve to disconnect the user when the user closes the windows explorer, or the user looses its internet connection.
any suggestion on how to do this? can someone guide me to the right path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
red5服务器方法disconnect正是这样做的。
你需要覆盖它,它看起来像这样......
The red5 server method disconnect does exactly this.
you need to override it and it will look like this...
在 IE 中,您必须使用 onUnLoad() 处理程序来调用 Flash 客户端应用程序。然后调用应该关闭 NetConnection;这是“最干净”的方法。否则,在服务器端,I/O 库将检测并处理断开连接(对等断开连接)。
In IE, you must use an onUnLoad() handler to then call into your Flash client app. The call should then close the NetConnection; this is the "cleanest" way to do it. Otherwise on the server side, the I/O library will detect and handle the disconnection (peer disconnect).