Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

RemoteObject

Avatar

Level 1
Hello!



We need cell remote method, for example:
remoteObject.getAllGoods();

How I can write structure below with ActionScript?



<mx:RemoteObject id="ro" destination="ordering" >

<mx:method name="getAllGoods"
result="resultHandler(event)"
fault="findAllFaultHandler(event)"/>

</mx:RemoteObject>
1 Reply

Avatar

Level 1
you'll have this in AS....



import mx.rpc.events.FaultEvent;

import mx.rpc.events.ResultEvent;

import mx.rpc.remoting.RemoteObject;



var ro:RemoteObject = new RemoteObject();

ro.destination = "ordering";

ro.addEventListener(FaultEvent.FAULT,findAllFaultHandler);

ro.addEventListener(ResultEvent.RESULT, resultHandler);

ro.getAllGoods();