Flex Remoting (RPC)
http://www.flexafterdark.com/docs/Flex-Remoting
Flex Remoting (RPC)
Flex Remoting... The Flex Remoting API is in the mx.rpc package and sub-packages.
Types of RPC services:
- HTTP - make HTTP calls to web servers
 - Web Services - call SOAP + WSDL based web-services
 - Remoting - call remote object servers such as ColdFusion or Java using BlazeDS
 
AsyncToken and Responder
Two objects are especially important when programming with Flex's Remoting/RPC APIs:
- An asynchronous call returns a token
- Any arbitrary information may be attached to the token for use later
 
 - A responder is attached to the token
 - ... (time passes)
 - The call will result in either a result or a fault
- The responder's result function is called
 - Or the responder's fault function is called
 
 
var token:AsyncToken = httpService.send(); token.data = "some data"; var responder:IResponder = new ExampleResponder(); token.addResponder( responder ); ...
                    
                
                
            
        
浙公网安备 33010602011771号