User Guide
PendingCall.getOutputParameter() 1425
Callback summary for the PendingCall object
The following table lists the callbacks of the PendingCall class.
PendingCall.getOutputParameter()
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
myPendingCall.getOutputParameter(index)
Parameters
index The zero-based index of the parameter.
Returns
A SOAPParameter object with two properties: value (the output parameter’s ActionScript
value) and
element (the output parameter’s XML value).
Description
Function; gets an additional output parameter of the SOAPParameter object, which contains
the value and the XML element. SOAP RPC calls may return multiple output parameters.
The first (or only) return value is always delivered in the
result parameter of the onResult
callback function, but to get access to the other return values, you must use functions such as
getOutputParameter() and getOutputValue(). The getOutputParameter() function
returns the nth output parameter as a SOAPParameter object.
Callback Description
PendingCall.onFault Called by Flash Player when a web service
method has failed and returned an error.
PendingCall.onResult Called when a method has succeeded and
returned a result.