But I saw something strange. The webservice sends me a ProxyObject ('cause
we're using SOAP protocol). Can I treat that in the same way as Object?I'm using a XMLConverter that i've found at http://www.customware.net/repository/display/FLEX/Integrating+Flex+with+XML+using+XMLConverter Below I'll give a little code that we're using for tests: var obj:Object = event.result; var Xml:XML = XML(XMLConverter.getInstance().toXML(obj).toXMLString()); ta.text+=Xml.toXMLString(); PS: ta is a Text Area. I've some parameters(like sprintId, sprintName, etc), but all that's returning just: <mx.utils_ObjectProxy/> Thanks!

