0

使用 amfphp 进行 Flash 远程处理时,我可以在 php 中编写什么来触发我在 Flash 中的响应程序中设置的“状态”方法?

或者更一般地说,我如何确定服务调用是否失败?对我来说理想的解决方案是在 php 服务器端抛出一些异常,并在 flash 客户端捕获该异常......其他人如何使用 flash 远程处理服务器错误?

var responder = new Responder(
    function() {
        trace("some normal execution finished successfully.  this is fine.");
    }, function(e) { 
        trace("how do I make this trigger when my server tells me something bad happened?");
    } 
);
myService = new NetConnection;
myService.connect("http://localhost:88/amfphp/gateway.php");
myService.call("someclass.someservice", responder);
4

1 回答 1

1

我弄清楚我做错了什么。从 php 调用 throw 将正确触发响应程序的错误处理程序,但我用来嗅探网络流量的工具妨碍了调用并弄乱了调用。

于 2010-03-19T22:01:51.857 回答