Flash 远程处理是否使 NetConnection 对象保持打开状态?
我构建了一个通过远程处理与 Coldfusion cfc 函数进行通信的应用程序。我注意到 NetConnection 对象在每次调用后都会断开连接,这是预期的行为吗?由于某种原因,我希望 NetConnection 对象保持连接状态,直到我自己关闭它(我每秒发出大约 1 个请求,并计划让它保持打开状态)。
I've built a application that communicates with Coldfusion cfc functions via Remoting. I've noticed that the NetConnection object disconnects after each call, is this expected behaviour? For some reason I was expecting the NetConnection object to stay connected until I closed it myself (I'm making about 1 request per second and had planned for it to stay open).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 HTTP 连接,它不会是持久的,但如果您使用的是 RTMP,它应该是持久的。检查连接的属性。
http://livedocs.adobe.com/flex/ 3/langref/flash/net/NetConnection.html#connected
如果您使用 RTMP,我会检查服务器端代码是否正在终止连接。
If you're using an HTTP connection, it will not be persistent, but if you're using RTMP, it should be persistent. Check the connected property.
http://livedocs.adobe.com/flex/3/langref/flash/net/NetConnection.html#connected
If you're using RTMP, I'd check to see if the server side code is terminating the connection.