FLASH与后台数据交换方法整理
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-08
例,其他版本到MM站查找) //=====================================================; //加载Remoting Component代码,这个是必须的; #include "NetServices.as" //加载Remoting 调试模块代码,这个是可选择的,用NetConnection Debugger查看调试信息; #include "NetDebug.as" if (inited == null){ inited = true; //设置默认网关; NetServices.setDefaultGatewayUrl("http://localhost:8500/flashservices/gateway"); //建立网关连接; gateway_conn = NetServices.createGatewayConnection(); //获取一个服务; myService = gateway_conn.getService("myservice", this); } //定义调用方法的函数; function getString(name){ //调用Remoting的getString方法; myService.getString(name); } //定义返回结果的函数; function getString_Result(result){ //result就为返回的结果; trace(result); } //定义返回状态的函数,此为可选的; function getString_Status(error){ trace("getString_Status"); trace(error.code); trace(error.description); trace(error.details); } //调用函数; getString("kinglong"); //=====================================================; //服务端方法定义(我这里以ColdFusion Component为例,其他版本请参考相应的资料) //=====================================================; <!---文件名为myservice.cfc---> <cfcomponent displayname="我的服务"> <!---定义了getString方法,需将Access设为remote,否则Flash remoting无法调用此方法---> <cffunction name="getString" access="remote" returntype="string"> <cfargument name="name" type="string" required="true"> <cfset myResult = arguments.name & ",欢迎你!"> <cfreturn myResult> </cffunction> </cfcomponent> 另附上Flash Remoting的在线帮助文件(Flash Remoting LiveDocs),MM网站上的Remoting相关的资料. 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Flash 与外部通讯的所有方法下一篇: FlashCom Actionscript介绍
关于FLASH与后台数据交换方法整理的所有评论