remoting as2.0 版 捕获连接失败!

      Remoting 2004-12-20 14:20
Remoting和getway无法连接不会调用 Responder.onFault。
mmRemoting 的帮助真是简陋,研究他的Remoting帮助半天也没找到如何捕获Remoting和后台无法连接的错误。最后还是通过原来1.0版的NetService类的方式,琢磨出来了,代码如下:
var pc:PendingCall = service.method(argu);
        pc.responder = new RelayResponder(obj, "onOK", "onFault");
        service.connection.onStatus=function(info){
            if(info.code!="success"){
//                trace("无法连接后台");
            }
        }
他的onFault一般是用来处理后台抛出的异常用的。
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}