Flash 远程处理是否使 NetConnection 对象保持打开状态?

发布于 2024-08-10 06:27:41 字数 161 浏览 1 评论 0原文

我构建了一个通过远程处理与 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 技术交流群。

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

发布评论

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

评论(1

难得心□动 2024-08-17 06:27:41

如果您使用的是 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.

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