Questions tagged [zend-amf]

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

73 questions
1
vote
2 answers

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() { $res = array(); $res[] =…
Reado
  • 1,412
  • 5
  • 21
  • 51
1
vote
0 answers

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…
Marijn Huizendveld
  • 791
  • 2
  • 7
  • 23
1
vote
2 answers

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…
1
vote
2 answers

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) { trace("Success: " +…
ufk
  • 30,912
  • 70
  • 235
  • 386
1
vote
0 answers

How to Convert String Reference values to string in zend Amf Php?

I am using Zend Frame work in my project. A Client side Flex Application sending the data to server using Remote Object as Amf - Php and i Use Charles web debugging proxy to Monitoring the data. Zend cannot recognizing the String reference…
1
vote
0 answers

How can I use Flex RemoteObjects with NodeJS?

I have a application builded in Flex/AS3, and I use a server LAMP as a proxy/gateway. I use ZendAMF to make the conversation between Flex <=> PHP. Now I need to build another server (proxy/gateway) in NodeJS, but the librarys are very very very poor…
Marcelo Rodovalho
  • 880
  • 1
  • 15
  • 26
1
vote
0 answers

How to receive Array collection from flex to php

I am working on zend Amf php, where the data is send as an array collection from flex (as3) to a PHP service, My question is how to receive the array collection in php side? I created a class, and included this class on the php service file class…
1
vote
0 answers

Flash builder + Zend amf | Insertion function not working when called second time

I'm using standart createOrders function which is autogenerated by Flash Builder 4.6. It works brilliantly when used once. Here is code: protected function okButton_clickHandler():void { var orders2:Orders = new…
armandsar
  • 13
  • 5
0
votes
1 answer

Flex is deserializing generic objects from Zend AMF instead of strictly typed objects

I'm using Zend AMF to send my remote objects to Flex. I've defined a Constant class and created getASClassName() method. Then I've created Action script class in flex. Objects are send successfully, but they are deserialized to generic Objects in…
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
1 answer

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 are mapped correctly? Here is my index.php: use…
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
1 answer

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 associations. Does anyone has some experience with…
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
1 answer

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 things like users, Orders, Products etc. Therefore I…
JaChNo
  • 1,493
  • 9
  • 28
  • 56
0
votes
1 answer

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 parameters. All objects that have custom types are…
Bert Vandamme
  • 337
  • 1
  • 4
  • 14
0
votes
1 answer

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 of the main issues I am facing at the moment is…
F21
  • 32,163
  • 26
  • 99
  • 170
0
votes
1 answer

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 Zend_Amf_Value_Messaging_ArrayCollection have a…
iarwain01
  • 424
  • 3
  • 11