Questions tagged [amf]

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.

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.

Typical usage from Adobe Flash Player, consists of an ActionScript program which:

  1. Connects to a specific "gateway" URL on a web server
  2. Accesses the service which handles AMF communication
  3. Calls a method on the service, mentioning a "callback" method
  4. Arguments passed are serialized to AMF and deserialized at the receiving end
  5. The service processes the input, and optionally returns data via AMF
  6. The callback method is invoked by the platform, and returned data is passed

http://en.wikipedia.org/wiki/Action_Message_Format

296 questions
0
votes
1 answer

Zend_Amf headers

I'm using charles proxy to debug a zend amf response. The headers are coming back as: HTTP/1.1 200 OK Date: Sat, 29 Aug 2009 10:04:32 GMT Server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8k DAV/2 PHP/5.3.0 X-Powered-By:…
codecowboy
  • 9,835
  • 18
  • 79
  • 134
0
votes
1 answer

Zend_Amf and Actionscript 2

Anyone know if Zend_Amf (1.9) can talk to Actionscript 2 which uses the Amf0 specification? All the examples in the Zend docs are for Actionscript 3.
codecowboy
  • 9,835
  • 18
  • 79
  • 134
0
votes
1 answer

Zend Framework: Does adding a class to Zend_Amf instantiate it?

I'm wondering if I can use a constructor within a class I am writing to provide a Zend_Amf gateway. When I do: $server = new Zend_Amf_Server(); $server->setClass('Foo'); $response = $server->handle(); echo $response; Does foo's constructor get run…
codecowboy
  • 9,835
  • 18
  • 79
  • 134
0
votes
1 answer

YouTube resolution switch with AMF message coming

I am capturing a YouTube Video on Wireshark. I can see the FLV file coming on the capture with the metadata information like this on itag=34: ...K......... onMetaData.......duration.@.y.C.....starttime.......... …
NitinG
  • 893
  • 3
  • 21
  • 38
0
votes
1 answer

Playframework 2 Use websockets for binary transport

I would like to use websockets with playframework 2. One of my clients will be using flash. In the playframework 2, how can I use websockets with binary data (amf). Could someone point me to some code that implements this, or at least an article…
Mike Z
  • 1,467
  • 2
  • 14
  • 16
0
votes
2 answers

How to deserialize array collection in flex

I am stuck with an issue: In which I am serializing an array collection to a file, the array collection has two type of items an Image and a class object. It serialize successfully, but when I de-serialize it, It simply returns array collection of…
Zain
  • 1
  • 2
0
votes
1 answer

How I can get flex-messaging-client-android.jar?

How I can get flex-messaging-client-android.jar? please provide a link.
hasan
  • 23,815
  • 10
  • 63
  • 101
0
votes
2 answers

Java: how many bytes needed to transmit double data type array containing nulls?

If I pass an array of data type double having 100 elements (for example) from an application server's (Linux CentOS) Java (1.6) method to a client using a binary transfer (e.g. AMF protocol), how many bytes are transmitted? For example, if it were…
ggkmath
  • 4,188
  • 23
  • 72
  • 129
0
votes
2 answers

Java LocalConnection Client

I'd like to connect a Flash Player instance (AMF3) to a Java LocalConnection. I know how to implement the AMF3 spec, since I've done a lot of work with Red5, but I'm unsure how to navigate building the actual LocalConnection interface. There is C…
Naftuli Kay
  • 87,710
  • 93
  • 269
  • 411
0
votes
1 answer

How to configure a deserializer securizer with graniteds?

In the latest version of granite ds, the deserializer securizer has been introduced. If I understand well, this is basically to prevent the deserializer to invoke classes that were not meant to be transported. Unfortunately I cannot find how to…
poussma
  • 7,033
  • 3
  • 43
  • 68
0
votes
1 answer

connect android with AMF webservices

I'm having some trouble finding documentation of how to communicate an android app with AMF. This post is related to this post How to connect app Android with amf web services?. I've seen the Adobe post but is helpless in my case. I was using…
marbarfa
  • 677
  • 1
  • 7
  • 16
0
votes
1 answer

Empty response from Zend_Amf_Server

When I call endpoint from flash all the action is done well but the response is empty. The code is: class AmfController extends Zend_Controller_Action { public function indexAction() { $server = new Zend_Amf_Server(); …
koral
  • 2,807
  • 3
  • 37
  • 65
0
votes
1 answer

Deserializing objects received using Cirrus

I'm using Cirrus to pass some values to other players in my game, and some of those values are objects, thing is, that when I receive those objects, they lost their type, and they become generic objects. I've read that Cirrus uses AMF, but I don't…
Artemix
  • 8,497
  • 14
  • 48
  • 75
0
votes
1 answer

How can I send AMF Credentials in an AMF request in soapUI?

I need to send a login and password with an AMF Request in soapUI. Yes, I'm aware that there is an option on the testCase level where you can specify this, and that you can set this property through a test step, but I need to send this information…
0
votes
1 answer

Does a soapUI runner used with a Virtual User generator only run the specified testCase's setup script once in loadUI?

I'm trying to run a load test on a testCase I have created in soapUI using loadUI. My soapUI testCase has an AMF request in it that creates a database object, lets call it "someList". In the testCase options menu, I have "Enable AMF session" checked…
1 2 3
19
20