Tagged Questions

Action Message Format (AMF) is a binary format used to serialize ActionScript objects. It is used primarily to exchange data between an Adobe Flash application and a remote service, usually over the internet.

learn more… | top users | synonyms

14
votes
5answers
6k views

UDP real-time games in Flash/Flex available Open source RTMFP implementation

Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash clients does anyone ...
12
votes
5answers
1k views

AMF and Cross Site scripting vulnerabilty confusion

I just got hammered on a Security Audit by Deloitte on behalf of SFDC. Basically we use flex and communicate via AMF. We use FluorineFX for this (as opposed to LCDS and Blaze). We are being told that ...
6
votes
6answers
1k views

Sniffing traffic between a Flex app and ColdFusion backend

What is a good strategy for sniffing/tracing function calls between a Flex application and a ColdFusion-based backend running on ColdFusion server? I understand they use AMF protocol. I'm used to ...
5
votes
2answers
749 views

Read an AMF object with flex socket

I'm currently trying to communicate between java and flex by using sockets and AMF serialized objects. On the java side I use Amf3Input and Amf3Output from BlazeDS (flex-messaging-common.jar and ...
5
votes
5answers
402 views

Switching to ColdFusion?

I am currently building an Adobe Air desktop app for a medium sized company and I truley believe that I could use this same app for many other 'like-companies'. It will greatly improve their ...
5
votes
3answers
829 views

Flash: AMF3 with reference tables?

AMF3 specification defines use of so called "reference tables" (see Section 2.2 of this specification). I implemented this behavior in my AMF3 encoder/decoder I developed in Erlang, but being not ...
5
votes
4answers
974 views

Where to get Flex - Java DS (Blaze) training material?

I was wondering if any of you out there knows where I can get really good training material (videos, examples, etc) on Flex - Java Data Services (BlazeDS would be ideal) besides the ones offered ...
4
votes
3answers
431 views

AS3 unable to decode AMF3 object from socket sent by Java

I have a java socket server that sends an Animal object to the Flash client when it connects. The object is sent like this: Amf3Output amf3Output = new ...
4
votes
2answers
223 views

Is it safe to use bytecode enhancement techniques on classes that might be serialized and why?

I haven't tried this yet, but it seems risky. The case I'm thinking of is instrumenting simple VO classes with JiBX. These VOs are going to be serialized over AMF and possibly other schemes. Can ...
4
votes
3answers
317 views

Custom Array Serialization on Flex client

I was wondering if it is possible to do custom serialization of Arrays/ArrayCollections in as3 via amf. To be more specific, i want to be able to pool objects on the client so that im not ...
4
votes
5answers
6k views

How can I debug AMF (BlazeDS) serialization of Java objects to Actionscript?

I'm using BlazeDS to remote some Java objects that I'm consuming in a Flex application. I'm getting a type coercion error with one of my classes that I can't for the life of me figure out. I have ...
3
votes
4answers
713 views

Trouble serializing vectors in a sub-class in AS3

Hey there! I'm trying to serialize data in AS3 but am running into a frustrating problem. Originally I had problems with "myObjClass" not being convertible, but after I discovered "registerClassAlias" ...
3
votes
1answer
498 views

AMF as a REST format, using BlazeDS and AS3's URLLoader

I have a ColdFusion server with an HTTP API that's currently returning either JSON or XML formatted responses. Internally, all of these responses are represented using the ColdFusion 'struct' type, ...
3
votes
2answers
387 views

How to make BlazeDS ignore properties?

I have a java class which has one field with getter and setter, and a second pair of getter and setter that access this field in another way: public class NullAbleId { private static final int ...
3
votes
3answers
302 views

Zend AMF Optimisation; Tips and Tricks?

I am working on a project that uses PHP to create an 'complex' object with lots of references to other objects linking back to their parent objects etc... The object structure is then serialized by ...
3
votes
3answers
291 views

How can I call an AMF service using Flex and get back an MP3?

My flex 3.5 application has an audio player whose content is accessed by calling an AMF service to get the mp3 data. As far as I can tell, flash.media.Sound is initialized with a URLRequest, so it's ...
3
votes
2answers
531 views

WebOrb.net / Alternatives

I'm working on an online forex trading system and a while back we have decided to use weborb for .net. The decision was made mainly because we already have a pretty solid .net backbone that was built ...
3
votes
2answers
971 views

Mapping PHP and Flex Objects

I am using ZendAMF for remoting. <?php error_reporting(E_ALL | E_STRICT); //error reporting, not needed require_once "Zend/Amf/Server.php"; //the zendAMF server require_once ...
3
votes
3answers
432 views

asp.net MVC

im wondering if is possible to return a serialized AMF object in a control action in ASP.net MVC anyone as tried this before? thanks in advance.
3
votes
5answers
553 views

Can AMF be used as “just another output format” from a web service?

I'm working on a RESTish server project that responds to HTTP requests in a variety of formats. This allows us to write user facing applications and retrieve whichever format seems most convenient at ...
3
votes
2answers
1k views

How can I load the AIR runtime as a in-process shared library from a C program

I'd like to build a special AIR launcher program in C along the lines of java.exe. I've looked at running AIR programs with a process viewer and was able to locate the AIR runtime DLL that is being ...
3
votes
4answers
3k views

.NET and AMF

How can I get a ASP.NET (inc MVC) application talking to a Flex UI over AMF. I am wanting to push approx 100+ records around at a time and AMF would appear to be the way forward, but there doesn't ...
2
votes
0answers
25 views

iPad application developed by Flash Builder hangs after loading external data

I'm developing iPad application in Flash Builder 4.6. My application stop working on device when I load data from amfphp gateway. There are about 30 value objects in server response. When server ...
2
votes
2answers
121 views

Is FluorineFX mature enough to use for a large web application?

I am in the planning stages of developing a large web application written in Flex and was wondering if anyone has actually used FluorineFX in a large production environment? The documentation and ...
2
votes
1answer
96 views

How to test latency of Flex messages

I have a system where clients connect via http streaming channels and use Producer and Consumer classes to dispatch and receive messages. I need to test the latency of messages in a way that ...
2
votes
2answers
586 views

Migration from Flex 3 to Flex 4.5: problem with network format

I'm currently migrating a large project from Flex 3 to Flex 4.5. The problem I'm stuck on is network communication: we're using a custom protocol that we embed in AMF3, but it seems the messages sent ...
2
votes
2answers
277 views

Problem passing data from Javascript to Flex

I am using ExternalInterface in Flex to retrieve AMF encoded string from Javascript. The problem is the AMF encoded string sometimes contains \u0000 which causes the ExternalInterface to return null ...
2
votes
1answer
395 views

How do you pass a 2d array from java to flex(using BlazeDs)?

To date I have only managed to pass primitive types and Arrays to flex. I need to know how to pass more complex objects like 2D arrays, or lists? Are these sent in the same manner? and if so how are ...
2
votes
2answers
234 views

Open source testing app for Flex app using AMF and BlazeDS

I am looking for an open source tool that measures response time as well as provide result status of a Flex application using AMF and BlazeDS. I am not very familiar with Flex technologies, but would ...
2
votes
2answers
1k views

Java library to encode / decode AMF

I currently have a Java server that talks to a Flash client by passing JSON encoded data over a binary socket connection. Is there a way on either side to encode / decode packets as AMF instead of ...
2
votes
5answers
2k views

use AMF instead of JSON on iPhone? (for web services)

Although iPhone support JSON natively, AMF is a binary protocol and it supposes to use much less bandwidth. Do you think using AMF is a good idea? Just found this AMF library in cocoa (Objective-C): ...
2
votes
1answer
343 views

Using Mate's RemoteObjectInvoker with C# classes

I'm using the Mate framework for Flex and communicating with a server running C#. I'm having trouble mapping C# classes to ActopnScript classes. I've got it working fine for simple classes and built ...
2
votes
4answers
741 views

Decode amf3 object using PHP

My flash code: var request=new URLRequest('http://localhost/test.php'); request.method = URLRequestMethod.POST; var data = new URLVariables(); var bytes:ByteArray = new ByteArray(); ...
2
votes
4answers
957 views

Async threaded tcp server

I want to create a high performance server in C# which could take about ~10k clients. Now i started writing a TcpServer with C# and for each client-connection i open a new thread. I also use one ...
2
votes
2answers
1k views

AMFPHP: Serializing Flash Objects over HTTP without the gateway

Flash + AMFPHP is a great combination. But there are cases, when Flash Remoting with NetConnection isn't the right tool, for various reasons. Rob had a great post on this some time ago: ...
2
votes
2answers
403 views

Flex RemoteObject: Arrays with same values reference same memory

If I send remote data from Zend_Amf to Flex, if two array properties on the object have the same data values they are deserialized at the remote end with the same memory storage. Example: AS3 object: ...
2
votes
3answers
343 views

Is AMF only for Flash?

I am new to AMF and I learned that AMF is supposedly very fast. I was wondering if I should use it for all my web services. Is it still fast without flash VM?
2
votes
6answers
1k views

What could cause a failure in PHP serialize function?

I have some serverside PHP code that attempts persist a data object (essentially an multi-dimensional array) to a backend database. This data object originally comes in as AMF actionscript object sent ...
2
votes
1answer
570 views

RubyAMF and Rails 2.3.3

Is anyone else seeing unpredictable results using Flex 3 with Rails 2.3.3 and RubyAMF 1.6.5? I had to revert back to Rails 2.3.2. Anyone have a clue what's going on?
2
votes
2answers
475 views

I want to let java application invoke a function in action script?

Dears, how can I let an SWF file to retrieve values immediately from Java application that does live calculations (Speed is a necessity). question in other form : how can I give my website ...
1
vote
1answer
52 views

Using RemoteObject (AMF) from a Flash or Pure AS3 Project

I recently ported some code from a Flex project over to a new pure AS3 project. When i attempted to make an AMF call, I am getting an error message like this: TypeError: Error #1034: Type Coercion ...
1
vote
1answer
47 views

BlazeDS channel serialization options?

Does anyone know of an accurate and complete list of the serialization options for a BlazeDS AMF channel? It seems like it should be an easy thing to find, but the official Adobe documentation on the ...
1
vote
1answer
120 views

Java, BlazeDS, Flex - Error #10566: Cannot create property smallMessage on AcknowledgeMessage?

I have a working Flex/Java application, but if I log out of the channelSet and log back in, in the debug console I am seeing numerous instances of this error: ReferenceError: Error #1056: Cannot ...
1
vote
3answers
150 views

Unknown AMF type '16':issue in using arraycollection at java end recieved from flex end using AMF

while calling a java side function from flex side I am having following problem this works java side //in FlexService class public List<Car> javaFunction(String model){ return carList; } ...
1
vote
1answer
110 views

Facebook Application SSL Change - AJAX Flash/Server Data Security

We are in the process of migrating (yup a bit late huh) of our apps to handle SSL fully (rather than just the monetization portions). We've looked at a few other application developer integrations ...
1
vote
1answer
143 views

Understanding an AMF Polling call

One of my testers is asking me about an AMF polling that we do in our app: flex_amf_call( "AMF3_call_12", "Gateway=http://test.url.com:22000/InventoryTesting/boa/messagebroker/amfpolling", ...
1
vote
2answers
202 views

Looking for a good C++ library for parsing AMF3

What's a good C++ library for parsing AMF3?
1
vote
2answers
145 views

Java AMF serialization

I'm migrating from Drupal to Java. I need to create a servlet to serve existing Flash player with server data. Until now this was done with AMFPHP module. I'm looking for a way to serialize a ...
1
vote
1answer
105 views

Preventing flooding/DOS attacks in Java/AMF app

I'm working on the Java backend for a Flash webgame - the client and server communicate using Action Message Format (AMF). A few weeks ago, another team in our company had their product hacked by a ...
1
vote
2answers
75 views

PHP & Adobe AIR RIA's

First and foremost - I am sorry if this is a question that has been answered hundreds of times on this site. When I typed the topic in it came back with a ton of related threads, and after reading ...

1 2 3 4