I'm using RemoteObject to invoke a method on a server-side Java object. The method returns a Java value object that is serialized across and manifested as an Actionscript object (actually a graph of objects). I'm interested in measuring the size of this object graph that is serialized across. I understand that AMF3 provides for compactness resulting from sharing objects that are referred to from multiple places - I'm trying to quantify this compactness. I guess I'm looking for a sizeof() kind of method. Is there such a thing? Any other way to get a sense of the size of data that is going from server to client?
Thanks Vijay

