[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread Geoffrey Williams
srv.lastResult.list.employee is already an ArrayCollection. Try: employees = ArrayCollection (srv.lastResult.list.employee); --- In flexcoders@yahoogroups.com, pateyog [EMAIL PROTECTED] wrote: I am facing a problem with a code which used to work with flex beta 2.0 but has stopped working when

[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread pateyog
--- In flexcoders@yahoogroups.com, Geoffrey Williams [EMAIL PROTECTED] wrote: srv.lastResult.list.employee is already an ArrayCollection. Try: employees = ArrayCollection (srv.lastResult.list.employee); --- In flexcoders@yahoogroups.com, pateyog pateyog@ wrote: I am facing a problem

[flexcoders] Re: problem using httpservice to fetch xml

2006-08-01 Thread flexnadobe
Here ya go -- This code should work for ya. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; backgroundAlpha=0 creationComplete=srv.send() mx:Script import mx.rpc.events.ResultEvent; import mx.controls.Alert; import mx.collections.ArrayCollection;