0

假设您在 MXML 中的 fx:Declarations 标记内定义了一个 WebService 对象,其中包含一些操作,以及这些操作的响应和故障处理程序。现在假设您想将该 WebService 传递给另一个对象的构造函数,然后它将在运行时向 WebService 添加一个操作,以及该新操作的自己的响应和故障处理函数。

例如:

<fx:Declarations>
    <s:WebService id="ws" fault="Alert.show('failure')">
        <s:operation
            name="Op1"
            resultFormat="object"
            result="WebOp1(event);"
            fault="WebFaultOp1()"
        />
    </s:WebService>
</fx:Declarations>

.
.
.
        var a:A = new A(ws);

和:

public class A
{
    private var m_ws:WebService;

    public function A(pWS:WebService)
    {
        m_ws = pWS;
        m_ws.Op2 = new Operation();
        m_ws.Op2.resultFormat = "object";
        m_ws.Op2.result = WebOp2(event);
        m_ws.Op2.fault = WebFaultOp2(event);
    }

    private function WebOp2(pEvent:ResultEvent):void
    {
    }

    private function WebFaultOp2(pEvent:FaultEvent):void
    {
    }
}

怎么可能做到这一点?如果必须,我愿意使用 MXML,但我在这里真正想要避免的是必须创建两个共享相同 WSDL 的单独 WebService 对象。谢谢!

4

1 回答 1

0

尝试这样做:

var operation:Operation = new Operation(webService, 'noName'); // mx.rpc.soap.mxml.Operation
operation.addEventListener(ResultEvent.RESULT, onResult);
operation.addEventListener(FaultEvent.Fault, onFault);
webService.operations['noName']=operation;
于 2013-01-04T15:00:46.153 回答