User Guide
Web service classes (Flash Professional only) 855
Description
Property; the number of concurrent requests. Possible values are listed in the table below:
SOAPCall.doDecoding
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
SOAPCall.doDecoding
Description
Property; turns decoding of the XML response on (true) or off (false). By default, the XML
response is converted (decoded) into ActionScript objects. If you want just the XML, set
SOAPCall.doDecoding to false.
SOAPCall.doLazyDecoding
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
SOAPCall.doLazyDecoding
Description
Property; turns “lazy decoding” of arrays on (true) or off (false). By default, a “lazy decoding”
algorithm is used to delay turning SOAP arrays into ActionScript objects until the last moment;
this makes functions execute much more quickly when returning large data sets. This means any
arrays you receive from the remote location are ArrayProxy objects. Then when you access a
particular index (
foo[5]), that element is automatically decoded if necessary. You can turn this
behavior off (which causes all arrays to be fully decoded) by setting
SOAPCall.doLazyDecoding
to
false.
Value Description
SOAPCall.MULTIPLE_CONCURRENCY
Allows multiple active calls.
SOAPCall.SINGLE_CONCURRENCY
Allows only one call at a time by causing a fault after one is active.
SOAPCall.LAST_CONCURRENCY
Allows only one call by cancelling previous ones.