Flash XMLSocket & NetStream相互干扰
在我的测试应用程序中,我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是非常奇怪的行为。您可以在这里提取并发布一些代码吗?
这应该可以...
您可以创建新的干净项目并仅分离导致此问题的代码并查看它是否仍然发生。
您也可以在非调试器 Flash Player 中使用 Release 构建来尝试此操作。
(我在寻求帮助之前会这样做,有一半的时间我什至不问:)
This is very curious behavior. Could you extract and post some code here?
This should work...
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:)