[flexcoders] Help on how to create a object out of an XML

2005-10-11 Thread gnaveenrajkumaar
hello there, i have created a webservice in asp.net that retrives data from a xml file and the output of the function is a xml document file... i wanted to create an object out of this xml document i retrive and i am not able to do so. any body please advice on how to proceed below is my

RE: [flexcoders] Help on how to create a object out of an XML

2005-10-11 Thread Tracy Spratt
In your getDocument operation, define a handler for the service result: mx:operation name=getDocument result=onResult(event) var _xmlDP:XML; Define a handler function: Private function onResult(oEvent:Object):Void { trace(oEvent.result); //make sure you have what you think you have

Re: [flexcoders] Help on how to create a object out of an XML

2005-10-11 Thread Clint Modien
I've done this before... Try this... http://www.mail-archive.com/flexcoders@yahoogroups.com/msg09146.html On 10/11/05, gnaveenrajkumaar [EMAIL PROTECTED] wrote: hello there,i have created a webservice in asp.net that retrives data from a xml file and the output of the function is a xml