Tagged Questions

Zend AMF is a PHP open source library used to serialize/deserialize AMF packages, part of Zend Framework.

learn more… | top users | synonyms

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 ...
2
votes
1answer
60 views

ZendAMF - what is all this traffic?

I am using ZendAMP php and Flex (Flash Builder 4). It works great, but I noticed when I am looking at the traffic going between my flex application and ZendAMF, there packets moving even though I am ...
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: ...
1
vote
0answers
15 views

Empty var when sending data from Flash CS5 to Zend_AMF service

After working with Flex and Zend_AMF i'm now working for another project (little game) with Flash CS5 and Zend_AMF. Retrieving data goes perfectly as long as i manage all the parameters in the ...
1
vote
1answer
36 views

What could be the reason Flash doesn't respond on local Zend_amf services?

I've (actually my classmate) got a problem with loading local ZEND_AMF services on Windows 7 (XAMPP). I can't find any answer on Google or on Stackoverflow. I found one similar topic without any ...
1
vote
2answers
62 views

AMF class mapping not working

I am building an application using Flex 4.5 and Zend_AMF as my AMF endpoint. I would like to map a class called CRequest in PHP to a class called Request in Flex. This is my php class: <?php ...
1
vote
0answers
110 views

Using Zend_amf without other parts of the Zend Framework

I currently have a web application built using a custom MVC framework with a front controller. The frame provides for things like authentication, authorization etc. The flow is currently as follows ...
1
vote
1answer
93 views

Zend AMF + Zend Website

I will be developing a front-end website and a back-end in Adobe Air. So I would like to have a Zend_amf to communicate to Air And a regular zend web application for my website. Does anyone know if I ...
1
vote
1answer
215 views

AMFPHP / ZENDAMF optimization

Is there a way to cache AMFPHP / ZENDAMF requests. I have used several chaching solutions like Cache_Lite and memCached in the past, but never for AMFPHP / ZENDAMF. Does anyone know any?
1
vote
2answers
851 views

Zend AMF and exception handling

I have created an Zend AMF service using the FlashBuilder tools. What I wanted to try was to change one of those automatically created methods to throw an exception in order to see the behaviour. ...
1
vote
1answer
677 views

ByteArray to MySQL from ActionScript 3 -> PHP via ZendAMF

I have an ActionScript 3 application that's sending an object to PHP via ZendAMF. The object contains a byteArray from an image. I have it currently saving the byteArray into a Blob like so: $ba = ...
1
vote
2answers
2k views

Cannot bind data to DropDownList control in Flex 4

I'm fetching some data from a PHP application using Zend AMF. However I can't get the data to bind to a simple DropDownList control. The PHP method is: class Test { public function myMethod() ...
1
vote
0answers
367 views

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 ...
1
vote
2answers
2k views

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 ...
1
vote
2answers
572 views

how to connect from Flash Media Server 3.5 to Zend_Amf

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) { ...
0
votes
0answers
24 views

Zend_AMF fault events and objects

Is it possible to send an object back with an AMF fault event? I am using Zend_AMF to talk with my flex application. I would like the flex side to catch fault events (500, 404, 403, etc). To catch ...
0
votes
1answer
17 views

How to check if class was properly mapped in Zend_amf?

I've successfully configured AMF on the flex side. The client is sending messages, but in return it always get empty response ( headers, but no body). How to debug index.php? How to check if classes ...
0
votes
1answer
30 views

How to use Doctrine entities as Value Objects in zend_amf?

I use Doctrine in Zend framework and I would like to use existing Entity classes as Value Object. The main obstacle I can see is how to deal with mappings. I don't want to lose information about ...
0
votes
0answers
52 views

zend amf echo $response file download

When I use zend amf within a zend framework setup browser prompts for file download. When I remove the echo line the amf endpoint message is successfully reached but then no response is given to the ...
0
votes
0answers
60 views

zendamf custom authentication

I am using zendamf to extend my codeigniter site. I want to be able to prevent users from making calls to the zendamf endpoint if they are not authenticated. I have build the method for letting the ...
0
votes
1answer
37 views

Create AMF wrapper

I am creating a mobile app that will connect to a zendamf implementation to retrive certain information to store and display to the user. There are multiple php classes on the gateway to handle ...
0
votes
1answer
88 views

AMF typed objects from flex back to PHP

Yesterday, I succeeded in sending typed objects from a PHP application to a flex front-end using Zend_AMF as per this question. The problem I am facing now is that I would like to send a typed object ...
0
votes
0answers
30 views

Passing custom typed objects as arguments on a PHP service method call

We're using zendamf as a remoting gateway between a flex client and a PHP server. Mapping server side types to client side types doesn't seem to have any affect on objects passed as service method ...
0
votes
1answer
109 views

Flex 4.5 remoting objects

I am very new to remoting in flex. I am using flex 4.5 and talking to a web application built by someone else on the team using AMF. They have used Zend_AMF to serialize and unserialize the data. One ...
0
votes
1answer
36 views

ZendAMF 1.11 and the missing source

We are trying to upgrade from an older version of Zend Framework to the most recent one (1.11). We have to send some ArrayCollections to a Flex-app that I can not access. Previous versions of ZF's ...
0
votes
0answers
37 views

Flex with php fetching more than 20000 records

I am using Flex,php and ZendAMF for an app which requires to query db and fetch more than 20000 records to plot on Google Maps.I have to get the entire records when the application loads to plot all ...
0
votes
0answers
91 views

Using ZendAMF inside a Codeigniter controller

Not sure if I am going the best way about this, I am trying to implement ZENDAMF with codeigniter. One of the problems I have had is that I want to be able to check if the user is logged in before ...
0
votes
1answer
68 views

Accessing services directory when setting up Zend AMF in Codeigniter

I followed the instructions in this tutorial to set up Zend AMF as a way of passing data from my flash app to my PHP app: http://codeigniter.com/forums/viewthread/180414/ So I have the directory ...
0
votes
1answer
57 views

Flex AMF offline mode?

I am currently using Flex (Flash Builder 4) and making web service connections to a Apache PHP Zend AMF server to retrieve data. This works great, but I am wondering what options are available for ...
0
votes
3answers
157 views

Hide Stack Trace in Exception Response in PHP/Zend

I'm wondering if there is a way to hide the stack trace in an Exception in PHP. I'm running a Zend Amf Server under ZF and would like to handle the faults on the front-end but showing the stack trace ...
0
votes
0answers
61 views

zendamf and codeigniter authentication check problem

I am trying to get zendamf working with my codeigniter installation. I want to ensure that the user has logged on before allowing them to make any requests to any of the services. I have the following ...
0
votes
1answer
205 views

flex - zend amf - how to convert to a mongodb compatible date and back?

In flex (flash builder 4) I have a Date() property that I am passing to Zend AMF (php) and I want to store that (as well as other data) in mongoDB. Mongodb is complaining about the date because it ...
0
votes
1answer
98 views

Some help to make AS3 and ZendAMF work together

after some research I found that the best option for my current proyect is to use AS3 in collaboration with ZendAMF to be able to connect with PHP->MySql. But, there is a little problem, I cant make ...
0
votes
1answer
138 views

Calling multiple functions with Zend AMF and one NetConnection?

I have Zend AMF working great in my application, but I'm trying to figure out how to call multiple asynchronous functions with a single connection. For example, let's say I have a service called ...
0
votes
1answer
77 views

zend amf can not return big-int of MySQL database?

Well here is my query and and it works fine and the field friend_id is of type MySQL big-int "SELECT friend_id FROM users_friends uf WHERE uf.user_id=1192134553 limit 2" and the query returns the ...
0
votes
3answers
40 views

ZendAMF - function calls in quick succession fail

I'm implementing AMF service methods for an flash front-end. Normally things work fine, but we've found that if two methods are called one right after the other, the second call returns null to the ...
0
votes
0answers
93 views

record locking in flex or zend amf

How do you handle record locking in a flex (flash builder 4) application with multiple users? It is using zend amf to talk to a database (mongodb or mysql). For example, if user 1 loads a client ...
0
votes
0answers
144 views

php: how to call a class in ZendAMF?

I am using PHP Zend AMF and I have several services and classes defined. One of the services is for logging - it inserts a simple log entry record in to a database. I want to create log entries ...
0
votes
1answer
71 views

Flex 3 Zendamf Remote Debugging

I'm having some problems debugging my zendamf remote. I'm on a Mac running MAMP. I've got Flex 3 with the SDK 3.6 and Flash Player 10. I've got Charles running. I don't see anything too weird ...
0
votes
1answer
323 views

Need help trying to get gateway running ( mx.rpc.events::FaultEvent #0 )

I followed the setup for http://www.zamfbrowser.org/documentation.html When I access http://www.zamfbrowser.org/zamf_demo/gateway.php When I access the http://localhost/gateway.php I get this error ...
0
votes
1answer
111 views

Is it possible to delay server response in multiplayer game? (edit: Can Long-Polling be done with php and flash)

I'm making a multiplayer flash game where at a 'table' more than two players will be playing. Its turn based. Using zendAMF can the server response be made to wait till the player whose turn it is has ...
0
votes
1answer
105 views

flex zend amf - display results in different labels

I've got a simple app that is currently getting information form a database and just displaying the content into a datagrid. Instead of having this information displayed in a datagrid, I'd like to ...
0
votes
0answers
44 views

Zend_AMF call modules as services

I'm trying to setup a zend_amf gateway to connect to flash, but instead calling a simple service class, is there a way to call a module/controller/action inside the zend framework? Thanks in advance
0
votes
1answer
216 views

How to version control generated code from Flex model driven development?

We are using Flash builders data services feature to generate ActionScript services/ValueObjects code along with PHP services code using the MySQL data source. Flash-builder manages this by creating ...
0
votes
1answer
224 views

how to make Flex Authentication persistance?

Hi I am using php on server side, once I authenticate flex channel set and then reload the application by refreshing the page , I again need to authenticate channel set by login in and calling ...
0
votes
1answer
363 views

Not getting the 'Zend Amf endpoint' mesage on dreamhost but OK on my localserver

I've been working with Zend Amf for few months and everything is fine on my localserver (and was fine on my test server hosted by dreamhost) until recently. Now every time I try to access the gateway ...
0
votes
1answer
145 views

Zend_Amf & addDirectory() vs setClass()

Is anyone else having problems with Zend_Amf's addDirectory()? It is supposed to autoload service classes and doesn't seem to. Though it works with setClass just fine. See snippet below. Ive seen ...
0
votes
1answer
112 views

Any suggestions on a basic PHP library for doing session management and authentication?

I am working on a project that exposes a number of web services to the public. Right now I have the serialisation side done (Using ZendAMF) and now I need to do the authentication. I was looking ...
0
votes
2answers
341 views

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 ...
0
votes
1answer
180 views

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 ...

1 2