Web Services Response Problem

Web Services Response Problem

Hallo Liste, Ich habe ein Problem mit einem Webservice und der Anbindung in Flex. Ich bin noch recht neu in flex - deswegen entschudlige ich mich, falls ich jetzt was triviales übersehen habe - aber die suche hier und über google habe ich jetzt ausgereizt. Mein Problem: Ich nutze einen Webservice (bzw. will nutzen) der in einer Operation den ungünstigen Parameter "return" zurücksendet, den kann ich jetzt allerdings nicht binden, da return in flex/actionscript ein reserviertes Wort ist. Also mein Kurzbeispeil wsdl: Code: <wsdl:definitions targetNamespace="http://webservice"> <wsdl:documentation>LoggedIn</wsdl:documentation> <wsdl:types> <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://webservice"> <xs:element name="myStatusResponse"> <xs:complexType> <xs:sequence> <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element> </xs:schema> </wsdl:types> ..... Wenn ich jetzt das einfache Binding in meinem mxml-File mache lässt sich das Projekt wegen "return" an der falschen Stelle nicht kompellieren: Code: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">       <mx:WebService wsdl="http://localhost:2345/axis2/services/LoggedIn?wsdl"                 id="ws"                 useProxy="false"                 <mx:operation name="myStatus"/>         </mx:WebService>         <mx:VBox>                 <mx:TextArea id="output" text="{ws.myStatus.lastResult.return}"/>                 <mx:Button label="my Status" click="{ws.mystatus.send()}"/>         </mx:VBox> </mx:Application> PS. Den Webservice kann ich nicht ändern! Also ich bräuchte einen Workaround in Flex - oder eine Hilfe wo ich etwas flasch mache?!