Questions tagged [zend-amf]

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

74 questions
6
votes
3 answers

How to map the PHP DateTime class to ActionScript / Flex Date class using Zend Framework AMF

Background Okay I'm one of those guys who NEVER asks questions and who can usually find what I need from existing questions or forums....but alas I have spent the last few days trying to figure this one out and have come up with very little existing…
3
votes
2 answers

Mapping PHP and Flex Objects

I am using ZendAMF for remoting.
Kevin
  • 21,638
  • 25
  • 75
  • 108
2
votes
1 answer

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 not requesting communications in my code. For…
Scott Szretter
  • 3,790
  • 11
  • 52
  • 76
2
votes
2 answers

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.
Cambiata
  • 3,423
  • 8
  • 31
  • 45
2
votes
2 answers

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…
janpio
  • 9,466
  • 12
  • 54
  • 99
1
vote
0 answers

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 service. I'm using this code to get data from Servie: …
Gigi2m02
  • 1,192
  • 3
  • 16
  • 33
1
vote
1 answer

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 answers: ActionScript 3 AMF Zend fails silently Let me…
Gigi2m02
  • 1,192
  • 3
  • 16
  • 33
1
vote
1 answer

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 from flex to PHP and on the PHP side, be able to…
F21
  • 28,366
  • 23
  • 91
  • 157
1
vote
2 answers

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:
F21
  • 28,366
  • 23
  • 91
  • 157
1
vote
0 answers

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 request->authenticate->check authorization->process…
F21
  • 28,366
  • 23
  • 91
  • 157
1
vote
1 answer

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 could do this in one Zend framework…
zendy
  • 75
  • 3
1
vote
1 answer

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?
oscarm
  • 2,484
  • 5
  • 35
  • 72
1
vote
2 answers

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. Instead of the exception being serialized back to my…
Timmo
  • 3,092
  • 4
  • 24
  • 40
1
vote
1 answer

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 a model file({projectname}.fml) which comprises…
stressed_geek
  • 2,020
  • 8
  • 32
  • 40
1
vote
1 answer

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 = new Zend_Amf_Value_ByteArray ( $im->bArray…
Yav
  • 106
  • 7
1
2 3 4 5