--- In [email protected], "Wally Kolcz" <wko...@...> wrote:
>
> I moved my CFC and database to my localhost so I can debug the 
webservice output and see it. I am a wee bit confused. The results 
panel is saying something like this:
> 
> e --> result --> source --> [0] --> firstName (etc)
> 
> How do I set that local? 
> 
> I tried myData = e.result.source as ArrayCollection and then tried to 
trace myData.getItemAt(0).firstName but got an error. 

Try

myData = ArrayCollection(e.result.source);

Your CFC may be returning an Array.

Reply via email to