when i use the hardcode relative link it works, so i guess the data
return from the cfc is wrong. bt thats odd the query seems to be
correct. may be its something to do with my arraycollection. please
take a look at the array collection and see if there's something wrong.

"dataAr"

[Bindable]
           private var dataAr:ArrayCollection = new ArrayCollection;
            public function displayResult(event:ResultEvent):void{
                //var dataAry:Array = event.result as Array ;
                                //dataAr = new ArrayCollection( (dataAry as 
ArrayCollection).source);
                                dataAr = new ArrayCollection( (event.result as
ArrayCollection).source);                               
                        }

"remoteobj call"

<mx:RemoteObject id="homeSvc" destination="ColdFusion"
source="test.cfcs.homes1" showBusyCursor="true"
fault="CursorManager.removeBusyCursor();Alert.show(event.fault.message)">
                <mx:method name="load" result="displayResult(event)" /> 
                                
        </mx:RemoteObject>

Reply via email to