Re: [flexcoders] How to fully configure an AbstractService just using ActionScript?

2007-10-16 Thread Rico Leuthold
This works for me (got the information from the flexcoders archive): var dbMethod:AbstractOperation = myRemoteObject.getOperation (method_name); var dbToken:AsyncToken = dbMethod.send(arguments); dbToken.addResponder(new AsyncResponder(getData, faultHandler)); _r

[flexcoders] How to fully configure an AbstractService just using ActionScript?

2007-10-15 Thread Robert Csiki
I want to have an ActionScript file defining all my RPC services, and this will be included by everybody would need to perform RPC calls.. How can I fully define an AbstractService just using ActionScript? For example, say for RemoteObject, I want to define its methods and their own result/fault