如何在纯 AS3 应用程序中创建 RemoteService
我想从我的纯 AS3 应用程序进行远程服务调用。 对于纯 AS3,RemoteObject 类不可用。 有谁可以帮我解决一下。
谢谢, 苏德什
I want to make a remote service call from my pure AS3 application.
In the case of Pure AS3 the RemoteObject class is unavailable.
Does any one can help me with a solution.
Thanks,
Sudesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我为此编写的一个课程。我在每个项目中都使用它,所以我不必再考虑它了。
要使用它,您必须首先调用一次
ServiceCaller.instance.connect("gatewayURL");
,然后每次需要调用时:onResult
是一个回调函数获取结果作为参数。您可以根据服务需要添加任意数量的参数。Here is a class I wrote for this. I use it on every project so I don't have to think about it any more.
To use it, you have first to call once
ServiceCaller.instance.connect("gatewayURL");
and then each time you want a call:onResult
is a callback function taht gets the result as a parameter. You can add as many parameters as your service needs.只需使用 flash.net.NetConnection ...检查 call() 方法以及 flash.net.Responder 类。
Just use flash.net.NetConnection ... check the call() method and also the flash.net.Responder class.