Flash sends 2 different datatypes for Arrays, 10 when the indexes are
numbers, and 8 when the indexes are Strings.
To get type 8 to work correctly I just had to read the length and then read
the rest of the data like a normal object.
With this new feature you can map a custom class to
a java class in then openamf-config.xml file. This way when
you use Object.registerClass use can use a simple name
such as Person and then have it translated to a specific java
class such as org.openamf.test.Person.
This also works in reverse direction so you can when a java class
class is serialized it can be registerd to a flash custom class and all
the methods will be available.
Here's an example:
<custom-class-mapping>
<java-class>org.openamf.test.Person</java-class>
<custom-class>Person</custom-class>
</custom-class-mapping>
Now you can lower the logging level to INFO or WARN and see only
the most important info.
4) Other bug fixes