zend-amf

Zend Amf for Flash Builder 4

I have created a flash builder 4 project and using the zend amf as the IDE suggests. But now its time to test in a online apache enviroment. It is any security risks? Can i easily move or hide the zend amf? thanks very much! ...

Flex RemoteObject + Zend AMF Server problem

Hello! I am working with php, Flex and zend's AMF Server using this guide. I successfully managed to connect php with Flex but after 'reconstruction' of my MySQL query I get a little bit different objects - some of their values are NULL. That confuses Flex and I get an error from my RemoteObject: Was expecting mx.messaging.messages.Ackno...

Problem in setting up remoting with zend_amf and cairngorm

Hello all I am using Flex 3.4 and Cairngorm 2.2 and Zend_AMF for server side. I am having problem in setting up RemoteObjects. I am getting the infamous Channel disconnected error. [RPC Fault faultString="Channel disconnected" faultCode="Client.Error.DeliveryInDoubt" faultDetail="Channel disconnected before an acknowledgement was rec...

how to connect from Flash Media Server 3.5 to Zend_Amf

Hi. i want to be able to connect from flash media server 3.5 to Zend_Amf (latest ZendFramework version). i tried doing the following: function amfresponder ( ) { this.onResult = function (result) { trace("Success: " + String(result)); }; this.onStatus = function (fault) { trace("Error: "+ fault.description); }; }; application....

red5 v0.9: connect from red5 to zend_amf

Hi. I want to be able to connect from red5 to php's Zend_Amf in order to send commands and perform operations. how can i do so? can anyone please pinpoint me to any information available on the subject. thank you ...

Flex ImageCapture/BitmapData limitations on small screens?

I have developed an application that in the end will save a captured image of a canvas that's scaled up to 4000 pixels then upload the result to the server using ZendAMF. This all works fine on all of my development machines. However, my client is running a small netbook and when he submits it to the server, the image on the server doesn...

Zend AMF and Flash Tutorials

I'm trying to learn Zend AMF but with Flash instead of Flex. I've seen Lee Brimelow's introduction tut, but are there any others out there that cover things more in depth? Cheers, Lee ...

Zend AMF implementation and AMF protocol security

I have a Flex frontend connecting via RemoteObject to Zend Framework's Zend Amf. This is my only means to transport data between client layer (Flex) and the application and persistence layers (LAMP with Zend Framework). Some ways I can address security are as follows: I can address TLS by using mx.messaging.channels.SecureAMFChannel in...

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: http://www.roboncode.com/articles/144 He also has a nice example on how to deliver AMF to a http request, without the POST and AMF-request package to ca...

Problems with scalability of flex apps using XML as a data structure?

I'm currently developing the backend of a flex application using Zend_Amf_Server and the decision has been made to to move a lot of the textual assets from the db and into some xml config files. The application is being rolled out to a 10k+ intranet user base, so in my eyes, the less db interaction going on the better, however one of the...

How to use getters and setters in PHP domain objects and transfer them correctly with Zend_Amf

I just started to use Zend_Amf and thus far I'm really happy with it for sending objects from Flash to the server. Sending my objects from the server back to my Flash environment is causing me a slight headache. My PHP objects mostly contain private properties that have a custom getter and setter method. How do I make Zend_Amf aware of t...

A different service for my Flex app using Zend_Amf

I have an iterator service that works fine already and returns a correctly structured values to my flex application through my Zend Amf server $contacts = array(); mysql_connect( 'localhost', 'root', 'test' ); mysql_select_db( 'test' ); $res = mysql_query( 'SELECT * FROM contact' ); while( $contact = mysql_fetch_as...

Using Flex to map locations from Zend Amf

Am looking for sample code snippets which will help me specifially on how to tag locations on my flex based google maps using coordinates stored in a database. Am using Zend Amf and RemoteObjects to achieve this end. So far I have succesfully display the map on the onReady event map.setCenter(new LatLng(0.402096, 37.701416), 6, MapType...

Integration of Zend_Auth and Zend_Acl with Zend_Amf_Server

Has anyone succesfully integrated Zend_Auth and Zend_Acl with Zend_Amf_Server? I'am looking for a working example. ...

What AMF Servers Support Remote Shared Objects?

Greetings. I'm planning on building a Flex based multiplayer game, and I'm researching what will be required for the server end. I have PHP experience, so I started looking at ZendAMF. Now in this game, I'll need the concept of rooms, and real time updates to clients in those rooms, so it looks like I'll be using remote shared objects ...

Service Browser for Zend AMF

Hi there ! I have some questions: Does Zend AMF has a service browser feature like AMFPHP does? Some people do mention about zamfbrowser, but at the time I'm posting this question, the site is still unavailable. Is there any possibility to use AMFPHP's service browser with Zend AMF? Thanks in advance! Regards, Andree. ...

AMF data is incomplete with Flex Service

Hello everybody. I am bussy with a Flex Project with a data services. Flash builder installed Zend Framework with Zend_Amf. When i run the project i get the error NetConnection.Call.Failed: HTTP: Failed. With chalers i say that Zend_Amf give the error: AMF data is incomplete (0 bytes of 0 bytes). Please check the recording limits in th...

Serializing to/from Adobe AMF in C#/Mono?

Using Zend_Amf it's possible to serialize php objects to/from Adobe AMF format. Is there an equivalent library for serializing/unserializing C# objects to/from AMF? I'm working in Mono 2.4. ...

Structuring System Architecture in a Flex Web Application on a Budget (w/o Java)

I started a project a while back using the following architecture from Adobe Developer Article talking about Creating marketing platforms in Flex. I did my first set of coding locally forgetting that my server did not handle Tomcat. So I said okay, and cut some corners and then some other limitation came up and I cut some more corners. ...

How do I move Zend Framework From Development to Production?

I'm just wondering if anyone else has had problems moving the Zend Framework from development to production. I changed my docroot to the public folder, updated my library path, but it's still not working out for me. The IndexController is working just fine, but my ServiceController is giving me an internal server error. ServiceCont...