Hi Charlie,
Yes, you're right, other than fundamentals, there isn't too
much out there on Flex/CF using remote objects. However, you
pointed me to this great resource:
http://www.flashcomguru.com/index.cfm/2006/11/11/flex2remoting
The poster raised many of the same questions that I had and
was unable to find answers to. Anyway, after reading the posts, I
was successfully able to call CF Admin API methods, using
mx:RemoteObject, on both my localhost and a remote server, like so:
<mx:RemoteObject id="ro"
destination="ColdFusion"
endpoint="
http://localhost:8500/flex2gateway/"
source="cfide.adminapi.servermonitoring"
fault="Alert.show(event.fault.message, 'Error')" />
I first had to authenticate by calling the login method of
the administrator.cfc (also via mx:RemoteObject), but it works
perfectly. My confusion was over the use of the endpoint property
-- which I was using incorrectly -- and the posts on this page
cleared my confusion.
Anyway, I definitely appreciate your help. I'm very happy to
get through this small hurdle, as I'm a big fan of both CF and
Flex.
Thanks again,
-Jose