RemoteObject is one of the three "RPC" protocols that a Flex client app can use to communicate with a server. RemoteObject uses AMF, a proprietary messaging protocol, to communicate with a Java back-end. Your other RPC options are HTTPService(my personal favorite) which uses XML over HTTP, and WebService, which uses SOAP.
All three require some server-side platform to receive the request and return the response. Tracy ________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Phill B Sent: Monday, November 26, 2007 12:50 PM To: [email protected] Subject: [flexcoders] Re: Simple question about remoteObject? I guess I'm way off with what I'm trying to do and need step back a little bit. Apparently I'm not even using the remoteObject correctly. On Nov 26, 2007 10:30 AM, Phill B wrote: > I have a remoteObject component in a RO dir. I want to call to it in > another component. How do I go about this? I've searched the web but > didn't find anything that helped. > > I tried using this: > <mx:Form xmlns:RO="RO.*" xmlns:mx="http://www.adobe.com/2006/mxml <http://www.adobe.com/2006/mxml> "> > in the component that is needs access to the RO but still didn't work. > > Thanks >

