а) Создайте свой удаленный объект (вы можете сделать это из mxml или как):
<mx:RemoteObject id="remoteObject" destination="campaignRemoteServices">
<mx:method name="method1" result="createResult1(event)" fault="createFault1(event)"/>
<mx:method name="method2" result="createResult2(event)" fault="createFault2(event)"/>
<mx:.......
</mx:RemoteObject>
Прежде чем сделать это, вам нужно знать имя получателя и доступные методы.
b) Настройте каналы для вашего удаленного объекта:
var channelSet:ChannelSet = new ChannelSet();
var channel:AMFChannel = new AMFChannel("amf", "blazeds amf endpoint , for example http://localhost:8080/myapp/messagebroker/amf");
channelSet.addChannel(channel);
remoteObject.channelSet = channelSet;
в) Вызовите методы:
remoteObject.method1("test");