User Guide
1436 Web service classes (Flash Professional only)
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.