User Guide
1426 Web service classes (Flash Professional only)
Example
Given the SOAP descriptor file below, getOutputParameter(1) would return a
SOAPParameter object with
value="Hi there!" and element=the <outParam2>
XMLNode
.
...
<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>
...
See also
PendingCall.getOutputParameterByName(), PendingCall.getOutputParameters(),
PendingCall.getOutputValue(), PendingCall.getOutputValues()
PendingCall.getOutputParameterByName()
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
myPendingCall.getOutputParameterByName(var localName)
Parameters
localName The local name of the parameter. In other words, the name of an XML element,
stripped of any namespace information. For example, the local name of both of the following
elements is
bob:
<bob abc="123">
<xsd:bob def="ghi">
Returns
A SOAPParameter object with two properties: value (the output parameter’s ActionScript
value) and
element (the output parameter’s XML value).