Posted by CMG on November 24, 2008 at 3:35pm
I tried the drupalsite Class of thirdavedesign.com people and I liked it pretty much, in fact is a very effective script, but I founded there were too many responsabilities in just one Class, there are no strict Data Typing in objects involved in the communication procces what makes difficult to customize our own needs.
I wonder if anyone knows someone has developed other framework yet.

Comments
I'm working on one which I
I'm working on one which I plan to release publicly when it's in a sort of usable alpha stage.
My goal is to create a package where you can either import the whole package or just the classes you need such as LoadNode or SaveNode or GetView etc.
More to come soon!
AS 2.0
I'm currently still using the AS2.0 remoting and rpc classes made by macromedia (back in 2004 before adobe got a hold of it :P) so I still use the
var system:Service = new Service(gatewayURL, new Log(), "system", null, null);
var node:Service = new Service(gatewayURL, new Log(), "node", null, null);
var view:Service = new Service(gatewayURL, new Log(), "views", null, null);
var user:Service = new Service(gatewayURL, new Log(), "user", null, null);
var conn:PendingCall = system.connect();
conn.responder = new RelayResponder(this, "initconnectOK", "initconnectFailed");
var loadnode:PendingCall = node.load(sessId, nodeId);
loadnode.responder = new RelayResponder(this, "loadnodeOK", "loadnodeFailed");
and stuff like that
but pretty much everything in the returned object is a string, so I gotta convert it all after grabbing it
they still do the trick for me, but I'm considering switching to AS3.0, even if it's just for the addChild() awesomeness
general as3 remoting framework with resultsets
Hi, we developed an opensource as3 remoting framework. In our opinion the best there is at the moment, as it very easy to use, and since it uses datastructures from within our package, also very powerful to manipulate.
It doesn't have a specific interface for drupal services, but is generic in it's setup, which makes it easy to plug it in drupal sites anyway. We're in the process of creating a drupal based service, which might follow in a couple of months.
In the meanwhile check out this tutorial on our opensource blog:
http://www.dpdk.nl/opensource/flash-remoting-and-resultsets-for-actionsc...
and let us know if it usable for your purposes
Kind regards,
Rolf Vreijdenberger
drupal and flash: http://www.dpdk.nl/opensource/drupalproxy-as-a-bridge-between-flash-as3-...