|
Hi there, I started playing around with the HTTP
service. However I can’t figure out how to access the actual “result”
(in my case an xml string) If I set up a listener it just returns me
an object in the “onResult” event. Why can’t I access my xml
string through “event.result”? How do I access it? public function
onResult(event:ResultEvent):void { // why
doesn’t this work? trace (event.result.toString()); //
this works but it’s very ugly //trace(event.message.body.toString()); } Thanks Robin // the
code of my sample application <?xml version="1.0"?> <!-- Simple example to demonstrate the
HTTPService tag. --> <mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="go();"> <mx:Script> <![CDATA[ import
mx.rpc.events.ResultEvent; public function
go():void { feedRequest.addEventListener(ResultEvent.RESULT,onResult); feedRequest.send(); } public function
onResult(event:ResultEvent):void { trace
(event.result.toString()); //trace(event.message.body.toString()); } ]]> </mx:Script> <mx:HTTPService id="feedRequest"
url="" useProxy="false" /> </mx:Application> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
YAHOO! GROUPS LINKS
__,_._,___ |
- [flexcoders] newbie question - HTTP servive Robin Burrer
- RE: [flexcoders] newbie question - HTTP servive Cathy Reilly
- RE: [flexcoders] newbie question - HTTP servive Tracy Spratt
- RE: [flexcoders] newbie question - HTTP servive Tracy Spratt

