Tagged Questions
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 ...
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
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 ...
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
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
31 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
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
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
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
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
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
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 ...
0
votes
2answers
680 views
AMF data is incomplete with Flex Service
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 ...
0
votes
3answers
862 views
Service Browser for Zend AMF
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 ...
0
votes
3answers
635 views
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 ...
0
votes
2answers
171 views
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( ...
0
votes
1answer
208 views
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 ...
0
votes
1answer
157 views
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 ...
0
votes
1answer
344 views
Setting up remoting with zend_amf and cairngorm
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 ...
0
votes
1answer
852 views
Flex RemoteObject + Zend AMF Server problem
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 - ...