加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

OpenRTMFP/Cumulus Primer(2)用Lua编写HelloWorld应用扩展Cumu

发布时间:2020-12-14 22:20:22 所属栏目:大数据 来源:网络整理
导读:OpenRTMFP/Cumulus Primer(2)用Lua编写HelloWorld应用扩展CumulusServer 作者:柳大·Poechant 博客:Blog.csdn.net/poechant 邮箱:zhongchao.ustc@gmail.com 日期:April 10 th ,2012 下面的这个实例是在本地(Client与Server位于同一机器上)测试的。 1

OpenRTMFP/Cumulus Primer(2)用Lua编写HelloWorld应用扩展CumulusServer

  • 作者:柳大·Poechant
  • 博客:Blog.csdn.net/poechant
  • 邮箱:zhongchao.ustc@gmail.com
  • 日期:April 10th,2012

下面的这个实例是在本地(Client与Server位于同一机器上)测试的。

1 Server-side

1.1 Server configuration:

; CumulusServer.ini                                                                                                                                                                                      
port = 1935
udpBufferSize = 114688
keepAlivePeer = 10
keepAliveServer = 15
[logs]
name = log
directory = logs

1.2 Application file:

function onConnection(client,response,...)
    function client:test(...)
        name,firstname = unpack(arg)
        return "Hello "..firstname.." "..name
    end
end

2 Client-side

// CumulusClient.as

package {

    import flash.display.Sprite;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.net.Responder;

    public class CumulusClient extends Sprite {

        private var nc:NetConnection = null;
        private var ns:NetStream = null;

        public function CumulusClient() {
            nc = new NetConnection();
            nc.connect("rtmfp://localhost");
            nc.client = this;
            nc.call("test",new Responder(onResult,onStatus),"OpenRTMFP/Cumulus","World")
        }

        public function close():void {
            nc.close();
        }

        public function onStatus(status:Object):void {
            trace(status.description)
        }

        public function onResult(response:Object):void {
            trace(response) // expected to display "Hello World OpenRTMFP/Cumulus"
        }
    }
}

3 运行结果

Hello World OpenRTMFP/Cumulus
[SWF] CumulusClient.swf - 解压缩后为 1,776 个字节
[卸装 SWF] CumulusClient.swf

4 远程测试:一个免费的测试服务器

获取 Developer Key 的地址:

http://108.59.252.39:8080/CumulusServer/index.jsp

服务器配置信息:

Server: amd64 OS: Linux 2.6.18-028stab095.1
Server IP: 108.59.252.39
OpenRTMFP as of: 22.Feb.2012

编写服务器段应用地址:

http://108.59.252.39:8080/CumulusServer/manage_ssls.jsp

快去试试吧 :)

-

转载请注明来自柳大的CSDN博客:Blog.csdn.net/poechant

-

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读