You are here: Recent News » osflash » amf3

 

amf3

Tags :

See here pages with amf3 tag :

PageDateDescriptionTags
AMF3 Specification2007/02/20 06:47documentation, amf3 Reverse Engineered by Kevin Langdon. Additions by Karl von Randow. Integer Reverse Engineered by Martin Schnabel. Word on the street is that Adobe will be providing the full specification in the fall. I couldn’t wait that long, so here it is. I still have some considerable work before this is easy to understand. Therefore please contact me directly if you have questions or even if you are interested in seeing some source code.,
AMF3 Implementations documentation, amf3 AMF3 support is available in many different programming languages. Below is a list of the ones we know about. Please feel free to update this list. Toolkits * Fluorine (.Net Remoting) * Red5 : Open Source Flash Server * Cinnamon - AS3 to Java Remoting * SabreAMF * rubyamf * PyAMF - AMF for Python * Django AMF * Granite Data Services - Free (LGPL) alternative to LiveCycle Data Services for J2EE servers.,
parsing byte arrays2007/11/06 21:23 documentation, amf3 def readAMF3ByteArray(self): typ = self.readAMF3Integer() isReference = (typ & 0x01) == 0 if isReference: reference = typ >> 1 if reference < len(self.objectReferences): if not self.objectReferences[reference]: raise ReferenceError # return self.objectReferences[reference] else: raise ReferenceError else: length = typ >> 1 try: #first assume we used byteArray.compress() from flash / flex inflatedStream = zlib.decompress(self.stream[self…,
Parsing Integers documentation, amf3 Integer-data is probably the single most used item in AMF3. The implementation of it is a little complicated so this page includes a reference implementation of parsing the AMF3 integer-data type: private int readAMF3Integer() throws IOException { int n = 0; int b = in.readUnsignedByte(); int result = 0; while ((b & 0x80) != 0 && n < 3) { result <<= 7; result |= (b & 0x7f); b = in.readUnsignedByte(); n++; } if (n < 3…,

RSS Feed for amf3 tag.

tags/amf3.txt · Last modified: 2007/02/20 06:53 by niko