Top Banner
Wade Arnold [email protected] Leveraging the Zend Framework for your next Flex RIA
16

Leverage ZEND Framework for your next Flex RIA

May 13, 2015

Download

Technology

ZendCon

In this session you will learn the basics of setting up an Flex to connect to ZEND_AMF environment. We will then walk through a CRUD (create, read, update, delete) example in and Flex 3.
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Leverage ZEND Framework for your next Flex RIA

Wade Arnold

[email protected]

Leveraging the Zend Framework for your next Flex RIA

Page 2: Leverage ZEND Framework for your next Flex RIA

What is Zend Amf?

� Zend Amf is an open source implementation of Adobe’s AMF (Action Messaging Format) which is the binary protocol that the Flash Player uses to store objects.

� Zend Amf is an alternative to Adobe’s LiveCycle Data Services ES with PHP as the endpoint rather than Java.

� Zend Amf allows a seamless connection between the Flash Player and PHP classes.

Page 3: Leverage ZEND Framework for your next Flex RIA

� By leveraging the AMF protocol there is no additional client side work in order to encode and decode data objects that are sent to and from the server.

� Zend Amf acts as a gateway to PHP and through serialization transforms the data types between ActionScript into PHP.

Page 4: Leverage ZEND Framework for your next Flex RIA
Page 5: Leverage ZEND Framework for your next Flex RIA

What is AMF?

� Action Message Format(AMF) is a binary file format representing a serialized ActionScript object. The AMF file type is used throughout the Flash Player for data storage and data exchange. For example in the Flash Player AMF is used in SharedObjects, RemoteObjects, LocalConnection, ByteArray, RTMP, and all RPC operations. You can serialize any object in Flash Player with the only exception being a displayObject.

� File Size – AMF objects are very small and are compressed using zlib.

Page 6: Leverage ZEND Framework for your next Flex RIA

What is AMF?

� Fast Serialization/ Deserialization – AMF is transformed using native C code in the Flash Player making it very fast. The AMF format was designed to serialize and deserialize quickly under low memory and slower CPU conditions making it perfect for the web.

� AMF data is parsed directly into objects, meaning there is no lag for interpretation or parsing of AMF making the creation of objects complete in a single pass.

Page 7: Leverage ZEND Framework for your next Flex RIA
Page 8: Leverage ZEND Framework for your next Flex RIA

Why use Zend Amf?

� It handles the conversion of data types between ActionScript and PHP.

� It can convert complex objects and supports class mapping.

� It allows you to make direct calls to server side methods, which eliminates time spent developing parsers in Flash and PHP.

� AMF serialization is part of the Flash Player, which decreases the code footprint and optimizes server communication.

Page 9: Leverage ZEND Framework for your next Flex RIA

� It is simple to start using on any web server that runs PHP 5.2.3 or above.

� Services are “non-specific” PHP classes that are portable without any code change.

� Easily separate the workload of ActionScript programmers from PHP programmers and let each use best of bread tools for development.

Why use Zend Amf?

Page 10: Leverage ZEND Framework for your next Flex RIA
Page 11: Leverage ZEND Framework for your next Flex RIA

Service Census

http://www.jamesward.com/census/

Page 12: Leverage ZEND Framework for your next Flex RIA
Page 13: Leverage ZEND Framework for your next Flex RIA

Your first Service (demo)

� Look at PHP HelloWorld

� Connect with Flash CS3

� Connect with Flex 3

Page 14: Leverage ZEND Framework for your next Flex RIA

Class Mapping

� $Object->getClassName//”com.MyFlashClass”

� @ClassMap com.MyFlashClass

� $object = new Zend_Amf_Value_TypedObject(‘com.MyFlashClass',$data);

� Zend_Amf_ClassMap::registerClass(“com.MyFlashClass”, “MyPhpClass”);

Page 15: Leverage ZEND Framework for your next Flex RIA

Why Zend Amf

� PHP runs the internet for a reason

� Flash/Flex enable a greater level of expression

� Tested*

� Backed by Adobe & Zend

Page 16: Leverage ZEND Framework for your next Flex RIA

Questions?