BlazeDS Console is where I am seeing the output. I don't see
anywhere to attach code so I will put some here, is there any
particular code you would like to see.
<cairngorm:ServiceLocator
xmlns:mx="
http://www.adobe.com/2006/mxml" xmlns:cairngorm="
http://www.adobe.com/2006/cairngorm"> <mx:RemoteObject
id="dataService"
destination="dataService"
makeObjectsBindable="true"
source="com.example.apps.reports.service.DataService"
showBusyCursor="true">
</mx:RemoteObject>
</cairngorm:ServiceLocator>
GetUserCommand.as
public class GetUserCommand implements ICommand, IResponder{
public function execute( event : CairngormEvent ): void{
var delegate:GetUserDelegate = new GetUserDelegate(this);
delegate.getUsers();
}
public function result( data : Object ) : void{
Alert.show("We got to a result");
}
GetUserDelegate.as
public class GetUserDelegate{
public function getUsers():void{
var call:AsyncToken;
call = service.getUsers();
Alert.show("Get users was called");
}