Flash Media Server NetConnection 与客户端对象的问题

发布于 2024-12-01 19:02:20 字数 672 浏览 1 评论 0原文

我使用以下命令成功连接到 fms:

netConnection = new NetConnection();
netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
netConnection.client = new Object();
netConnection.connect( AppConfig.FMS_ADDRESS );

现在在事件处理程序中:

if ( event.info.code == "NetConnection.Connect.Success" ) {
    trace( netConnection.client.id );
    remoteSlices = SharedObject.getRemote( "slices", netConnection.uri, true );
    remoteSlices.addEventListener( SyncEvent.SYNC, onRemoteSync );
    remoteSlices.connect( netConnection );
}

我的问题是,netConnection.client.id 未定义,而同时在服务器上我可以毫无问题地跟踪客户端 id。

我在这里做错了什么?

i am connecting successfully to an fms with the following command:

netConnection = new NetConnection();
netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
netConnection.client = new Object();
netConnection.connect( AppConfig.FMS_ADDRESS );

now in the event handler:

if ( event.info.code == "NetConnection.Connect.Success" ) {
    trace( netConnection.client.id );
    remoteSlices = SharedObject.getRemote( "slices", netConnection.uri, true );
    remoteSlices.addEventListener( SyncEvent.SYNC, onRemoteSync );
    remoteSlices.connect( netConnection );
}

my problem is, that the netConnection.client.id is undefined, while at the same time on the server i can trace the client id without a problem.

what am i doing wrong here?

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

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

发布评论

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

评论(1

一念一轮回 2024-12-08 19:02:20

netConnection.client 是一个空对象,正如您所定义的那样,具有以下行:

netConnection.client = new Object();

要检索客户端的 id,您必须将其从服务器发送到客户端。 我确信您知道该怎么做 :)。

The netConnection.client is an empty object, just as you defined it to be, with the following line:

netConnection.client = new Object();

To retrieve the id of the client you'll have to send it from the server to the client. I'm sure you know how to do that :).

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