I want to a framework to pass objects between Java and AS3 using sockets. It should be something with good performance (not XML, JSON). I have looked into AMF but all of the tutorials are very complex and not about what I need. I have used java to java serialization but I can’t find any tutorial about Java to AS3.
Does anyone know a good tutorial?
What I ended up using the parts of BlazeDS that deal with Java AMF decoding and encoding (flex-messaging-common.jar and flex-messaging-core.jar). http://www.riaspace.com/2010/02/java-as3-serialization-with-amf/ was of help there.
Also a relevant topic: AS3 unable to decode AMF3 object from socket sent by Java