== The ServerSideCallEvent == The ServerSideCallEvent class is a representation of a remote method invocation; it needs to inform the application if the remote call requires or not authentication, the method to invoke and the optional namespace (it is the way you can handle multiple remote method results in the same presenter). [[BR]] The remote method is needs to know if you need to change the source and / or the destination, the method to call, the kind of object to return, if it returns a list or a unique value object and the parameters to invoke the method {{{ var user:UserInfo = new UserInfo(); user.portal_code = "rikorda"; user.username = "test"; user.password = "othertest"; var returnObject:UserStatus; var method:RemoteMethod = new RemoteMethod("", "", "adminLogin", UserStatus, false, user); }}} [[BR]] The invocation of the method now became only a matter of an event dispatching {{{ dispatchEvent(new ServerSideCallEvent(ServerSideCallEvent.ANONYMOUS_CALL, method)); }}} handled in the class you defined as a listener of your ServiceConnector instance.