I am trying to trace the return path of a Remote Object call and a little
confused by the result.
If I set up the following
<mx:RemoteObject id="VehicleRO" destination="AMFPHP"
source="VehicleService" endpoint="../amfphp/gateway.php" showBusyCursor="true">
<mx:method name="getVeh" result="getVehResultHandler(event)"
fault="getVehFaultHandler()"/>
</mx:RemoteObject>
and Call VehicleRo.getVeh(VehicleId)
What is the path in the debugger to find the result? It populates a grid just
fine with
ItemTypesRO.getVeh.lastResult
And should it come back as an Array of Value Objects or Generic Objects?
Thanks
Dan Pride