如何在RTMFP中制作Web服务? (以及......它是如何工作的)
我设法(多亏了我在 adobe 实验室中看到的一个示例)在我的网页中托管了一个 swf,通过 Cirrus,我可以在两个不同的用户之间建立连接,这就像一个魅力,但是,我必须通过 msn 对等方ID 以便建立该连接。
我知道这部分必须通过网络服务来解决..但是,我怎样才能制作一个,更重要的是,它是如何工作的?
谢谢!
I managed (thanks to an example I saw in adobe labs) to host in my webpage an swf, and through Cirrus I could establish a connection between two different users, that worked like a charm, BUT, I had to pass through msn the peer ID in order to establish that connection.
I know that this part must be resolved by a webservice.. but, how can I make one, and, more important, how does it work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将告诉您如何使用 PHP 做到这一点
1)首先您需要一个网站或在线 -“localhost”(在 WAMP 上提供在线选项)
2)在 FLEX 中使用 HTTPService ,将您的近 ID 传递给 PHP 脚本并让该脚本写入给后端的值。 (MySQL)
3) 当您的朋友连接到您的站点时,执行与步骤 2 相同的操作。
4) 使用 PHP 脚本再次从后端交换您的 ID。
现在您将被连接。
I will tell you how to do that with PHP
1) First you need a website or online-"localhost" (put online option available on WAMP)
2) Using HTTPService in FLEX , pass your nearID to PHP script and make that script write that value to backend. (MySQL)
3) When your friend connects to your site , do the same as step 2.
4) Exchange your IDs from the backend again using PHP script.
Now you will be connected.