I have a Java Axis2 Web Service that generates a dataset in the form of a 3D array of doubles (eg double[][][]), and returns it to the client serialized as a bytearray (byte[]). I'm able to reconstitute the 3D array of doubles in memory on a client using Java.
Is it possible for me to do the same in a Flex client? The ActionScript bytearray classes seem to work differently than the bytearray manipulation classes I'm using in Java. I'd like to be able to do client-side calculations and visualization on the 3D dataset. Anyone have any idea if this is possible in ActionScript?

