amf

Flash Builder: Network Monitor - not showing raw data for AMF?

I've built a basic RPC program using FluorineFX (.NET) on the backend for my AMF service. Everything works fine, i.e. I can make calls to the exposed functions. However, when I looked at Network Monitor in Flash Builder to further examine the network traffic, and then view the Raw Data for the AMF response, it doesn't seem to be compres...

Custom Array Serialization on Flex client

Hi, 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 instantiating new objects every time i make a RemoteObject call. I tried using IExternalizable but that only lets me serialize the objects myself ...

Can't return value from another instantiated class/method using WebORB for PHP

I'm trying to use WebORB for PHP. The /weborb/ folder has been copied into my web root and I can access the console via /weborb/index.php. I've copied my test application into /weborb/_Services/Test/Main.php. The file contents is as follows: <?php require_once '/home/user/www/MyClass.php'; class Main { public function testMethod(...

Fastest and most efficient conversion of a byte array to a 29 bit integer in Java

Since 29 bit integers are popular in AMF, I would like to incorporate the fastest / best routine known. Two routines currently exist in our library and can be tested live on ideone http://ideone.com/KNmYT Here is the source for quick reference public static int readMediumInt(ByteBuffer in) { ByteBuffer buf = ByteBuffer.allocate(4)...

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 like to capture this information from a calling Java method, if possible, for monitoring purposes. ...

[PyAMF] How to use the remote object properly in flex, with as3 and pyamf or phpamf server side

I see that I never get a response from server when making a request. im using firebug to test the network communications. ...

Blaze DS unable to use my-streaming-amf - "Destination 'chat' not accessible over channel 'my-amf'.

Hello, Can anyone point me out whats wrong with the configuration I have to execute a simple sample application to use the streaming-amf. I get the following error when i tried to submit a text and get the same using streaming-amf. My messaging-config.mxml has the following lines. <destination id="chat"> <channels> <chann...

Does AMF support caching?

In other words: Can I respond with a 304 and have it "just work"? ...

How to send ByteArray to Flash without using php_amf extension

Hi. I'm working on a Flash tool that needs to send some data in the form of a flash.utils.ByteArray instance to PHP (amfphp service class) and get that data back from the amfphp service as flash.utils.ByteArray instance. Now I can do all of these with the php_amf extension enabled on the local WAMP server. And the tool works fine. But ...

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 anyone confirm or deny my suspicions that doing behind-the-back stuff like bytecode enhancement might mess something up in general, and provi...

Utilizing A Devise Session Through Flex With Rails3-AMF

I have a Flex front end and a Rails 3 back-end that I would like to establish a session to. Before you can access the page embedded with the flex front-end, you are prompted with a html login page through Devise. I am able to login fine through the html page but cannot get access to the session with Flex using amf requests. I have the...

How to set up Charles proxy for standalone Flash player during FlexUnit integration tests?

I'd like to record the AMF traffic that happens during some of my Flex application unit tests. I am using Maven/flexmojos to compile the unit tests. I've installed Charles proxy and can get it to work from Firefox, but how can I get it to work from the standalone Flash player that flexmojos/FlexUnit invokes to run the integration tests...