We are using flash remoting and I am trying to figure out when the call is getting made. Is it at the time that I call the service method or after I create the Relay Responder object? Does the pending call object get and hold the data until a relay responder has been created or after it has been created?

// call service
var temp_pc:PendingCall = myService.readDirectory(dirPath);

// create a responder.
temp_pc.responder = new RelayResponder(this, "gotMilk", "gotFault");

function gotMilk( re:mx.rpc.ResultEvent ):Void {
   // do stuff
}
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to