I am calling a web service that sometimes returns up to 1.9 MB of SOAP formatted data. I have left the resultFormat set to object, and it seems to handle the initial parsing into anonymous objects without much trouble. However, when I attempt to convert this structure into class instances the player chokes and usually ends up freezing the browser.
The object structure consists of one main Batch object instance, which contains 2000 BatchDocument instances, which in turn each contain a single ClientInfo object instance and up to four Plan object instances. This doesn't seem like a structure that Flex should fail so miserably with as the performance everywhere else has been pretty impressive. I have attempted this using Darron Schall's ObjectTranslator class (http://www.darronschall.com/weblog/archives/000247.cfm) as well as simply passing the anonymous objects to my class constructors. Both result in a completely unusable application. Any help is greatly appreciated. Ben

