Flash CS3 Documentation |
|||
| ActionScript 2.0 Components Language Reference > Web service classes > PendingCall.getOutputValue() | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
myPendingCall.getOutputValue(varindex)
index The index of an output parameter. The first parameter is index 0.
The nth output parameter.
Function; gets the decoded ActionScript value of an individual output parameter. 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 getOutputValue() and getOutputParameter(). The getOutputValue() function returns the nth output parameter.
Given the SOAP descriptor file below, getOutputValue(2) would return true.
...
<SOAP:Body>
<rpcResponse>
<outParam1 xsi:type="xsd:int">54</outParam1>
<outParam2 xsi:type="xsd:string">Hi there!</outParam2>
<outParam3 xsi:type="xsd:boolean">true</outParam3>
</rpcResponse>
</SOAP:Body>
...
PendingCall.getOutputParameterByName(),PendingCall.getOutputParameter(), PendingCall.getOutputParameters(), PendingCall.getOutputValues()
Flash CS3
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/flash/9.0/main/00003712.html