Flash XMLSocket & NetStream相互干扰

发布于 2024-10-21 21:36:24 字数 533 浏览 5 评论 0原文

在我的测试应用程序中,我有一个 XMLSocket 与 java 套接字服务器(在我的计算机上本地运行)进行通信。

如果我同时尝试使用 Cirrus 与另一个客户端(也在我的计算机上本地运行)建立 P2P 连接,然后

private function initRecvStream(){
  recvStream = new NetStream(nc, farPeerID);
  recvStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
  recvStream.play("media");
  recvStream.client = this;
}

客户端重新连接到套接字服务器(套接字服务器接收到新连接,之前没有接收到断开连接)

只会发生这种情况当初始化receiveStream时。初始化 sendStream 不会干扰与套接字服务器的连接。

这里有什么问题?为什么我的 p2p 连接会干扰我与套接字服务器的 XMLSocket 连接?

in my test application, i have an XMLSocket to communicate with a java socket server (running locally on my computer).

If i concurrently try to setup a P2P connection with another client (also running locally on my computer) using Cirrus, then on

private function initRecvStream(){
  recvStream = new NetStream(nc, farPeerID);
  recvStream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
  recvStream.play("media");
  recvStream.client = this;
}

then the client reconnects to the socket server (the socketserver receives a new connection, without receiving a disconnect before)

this happens only when initializing the receiveStream. initializing the sendStream doesn't interfere with the connection to the socket server.

What's the problem here? why does my p2p connection interfere with my XMLSocket connection to my socket server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

居里长安 2024-10-28 21:36:24

这是非常奇怪的行为。您可以在这里提取并发布一些代码吗?

这应该可以...

  • 打开到服务器的 XML 套接字(XMLSocket)
  • sendStream(NetStream + 直接连接)
  • recvStream(NetStream + peerId)

您可以创建新的干净项目并仅分离导致此问题的代码并查看它是否仍然发生。

您也可以在非调试器 Flash Player 中使用 Release 构建来尝试此操作。

(我在寻求帮助之前会这样做,有一半的时间我什至不问:)

This is very curious behavior. Could you extract and post some code here?

This should work...

  • open XML socket to server (XMLSocket)
  • sendStream (NetStream + direct connections)
  • recvStream (NetStream + peerId)

Can you create new clean project and separate just the code that cause this and see if it stills happens.

And you could try this with Release build in non-debugger Flash Player also.

(I do this before I go for help and half the time I don't even ask:)

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