RE: [flexcoders] Re: loadWSDL Webservice result?

2006-06-13 Thread Peter Farland
7, 2006 8:42 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: loadWSDL Webservice result? Thanks Ben for the resultFormat tip. lastResult is still throwing an error so I will go with using 'result'for the moment.CheersWayne--- In [EMAIL PROTECTED]ups.com, "ben.clink

[flexcoders] Re: loadWSDL Webservice result?

2006-06-07 Thread ben.clinkinbeard
The lastResult vs. result thing is a property of the WS operation you call, not the ResultEvent object that is sent to your result handler. I believe the most common place you would use this would be when you want to bind part of the returned data to something. myWebService.myWsMethod.lastResult

[flexcoders] Re: loadWSDL Webservice result?

2006-06-07 Thread wayne_badu_johnson
Thanks Ben for the resultFormat tip. lastResult is still throwing an error so I will go with using 'result'for the moment. Cheers Wayne --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: The lastResult vs. result thing is a property of the WS operation you call,

[flexcoders] Re: loadWSDL Webservice result?

2006-06-06 Thread wayne_badu_johnson
Thanks Tracy, I have tried these previously, 'lastResult'is not available on the event, it throws an undefined property error. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: event.result is an Object. That is why you see that [object Object] displayed when you

[flexcoders] Re: loadWSDL Webservice result?

2006-06-06 Thread wayne_badu_johnson
Further to this thread... I can gain access to the data in the results like event.result.id, I do have complex data coming through as well, however as I can't specify the resultFormat in actionscript, is it possible to transform the result object into e4x format? For example if