ZEND+FLEX认证+收藏

http://corlan.org/2008/11/13/flex-and-php-remoting-with-zend-amf/   ZEND+FLEX收藏

 

http://www.keithcraigo.com/archives/66ZEND+FLEX认证

http://www.keithcraigo.com/archives/181ZEND+FLEX认证

 

http://ressources.mediabox.fr/tutoriaux:flashplatform:dynamique:remoting:zendlogin:zendlogin1ZEND+FLEX认证

 

 

Flex and PHP: remoting with Zend AMF

The latest PHP library to add support for AMF and remoting is Zend Framework. The preview prelease version 1.7 offers a new component Zend_AMF that lets you create Flex applications that talk to PHP backends using remoting. Since I am a big fan of remoting as a way to get data to your Flex/AIR clients, I wanted to add a short post explaining how to use it. Here is another post I wrote on remoting with AMFPHP. Actually this post is a part of a larger article I did for Adobe Developer Connection. I want to keep it more focused, so I wrote this one.

You can download a Flex Builder project that contains the code I explain in this article from here . Inside of the archive you will find a readme.txt file explaining what to do with it.

Installing the Zend Framework

After downloading the Zend Framework 1.7 archive, extract the files. Next, you have to add the library folder to your PHP include path. Open the php.ini file and add the path to the library folder to the include_path; on my machine looks like:
include_path = “c:htdocszend_frameworklibrary”

Next, save the file and restart your web server. You can read more about installing Zend Framework here . With this, you’ve completed the “installation” of Zend Framework.

What is AMF and remoting and why should you use it?

If you already know these answers, you may want to skip to the next section. Let’s start by understanding remote procedure calls. Remote procedure calls let Flex applications  make direct calls on the methods of your server side classes. Using BlazeDS or LiveCycle Data Services you can expose your Java and ColdFusion classes to the Flex application. However, if you use PHP you need a third party library on the server to expose PHP classes directly. Existing solutions include Zend AMF, WebORB, and AMFPHP. This article focuses on remoting with Zend AMF. AMF is a binary protocol for serializing the messages. Because it is binary, it is more efficient in terms of bandwidth and server processing load than JSON or XML methods. If you want to see for yourself how much more efficient it is, James Ward has put together a nice benchmark .

Zend AMF is a PHP library that knows how to serialize and deserialize the AMF protocol (it is part of the Zend Framework starting with version 1.7), and thus lets you expose PHP classes to Flex applications. Another compelling reason for using remoting is code reuse. Because you can call methods on PHP classes and these methods can return PHP objects, you don’t have to modify your existing code to output JSON or XML.

As I noted earlier, Zend AMF remoting uses AMF to serialize messages between the server and Flex client. It also offers the ability to map an ActionScript class to a PHP class. For example, suppose you want to display in Flex the information from a table with the following structure:

contacts
-------------------------------
id primary key int
name varchar(255)
email varchar(255)

When using remoting, you create an ActionScript class to model this data in the client and a PHP class to model the same data on the server. When you create the PHP class that you want to call from Flex, you add a method that, for example, retrieves all the contacts from the table. This method will return an array of PHP VO classes, and in Flex you will get an array of ActionScript objects. All the conversions from PHP objects to AMF to ActionScript objects are done automatically for you by  Flex and Zend AMF.

When you use XML or JSON for remoting, you’ll tipically need extra steps in Flex to process the data in order to display or store it.

Let’s look at a working example.

Create the Flex PHP project

Usually, when I work with Flex and PHP projects, I prefer to use Flex Builder and Zend Studio installed together. It is possible, however, to work with Flex Builder and a PHP plugin to help you with the PHP code. Either way, you should create a Flex project that uses PHP on the server side (if you plan to use Zend Studio and Flex Builder, first create a Zend PHP Project, then use the Add Flex Nature wizard to add Flex PHP nature on the project). This way you streamline the deployment of the SWF file (the compiled result of the Flex project) to the PHP server. I chose to create a new project called “flex_php”.

Next, create a folder inside the PHP server root named “zendamf_remote”, and add this folder to the project. Choose New > Folder, and then click on the Advanced button. If you want to have the source files for the Zend Framework available to your project, and you use Zend Studio too, then open the properties page for the project, go to the PHP Include Path > Libraries tab, and add an External Folder pointing to the place where the Zend Framework is installed.

Create the PHP code

In the “zendamf_remote” folder, create three PHP files: MyService.php, VOAuthor.php, and index.php. Open the MyService.php page and paste the following code (you need to update the connection information for your specific database setup; to do this, look for the four constants at the top of the class):

<?php
require_once('VOAuthor.php' );
//connection info
define("DATABASE_SERVER" , "localhost" );
define("DATABASE_USERNAME" , "mihai" );
define("DATABASE_PASSWORD" , "mihai" );
define("DATABASE_NAME" , "flex360" );

class MyService {
/**
* Retrieve all the records from the table
* @return an array of VOAuthor
*/
public function getData() {
//connect to the database.
//we could have used an abstracting layer for connecting to the database.
//for the sake of simplicity, I choose not to.
$mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD);
mysql_select_db(DATABASE_NAME);
//retrieve all rows
$query = "SELECT id_aut, fname_aut, lname_aut FROM authors_aut ORDER BY fname_aut" ;
$result = mysql_query($query);

$ret = array();
while ($row = mysql_fetch_object($result)) {
$tmp = new VOAuthor();
$tmp->id_aut = $row->id_aut;
$tmp->fname_aut = $row->fname_aut;
$tmp->lname_aut = $row->lname_aut;
$ret[] = $tmp;
}
mysql_free_result($result);
return $ret;
}
/**
* Update one item in the table
* @param VOAuthor to be updated
* @return NULL
*/
public function saveData($author) {
if ($author == NULL)
return NULL;
//connect to the database.
$mysql = mysql_connect(DATABASE_SERVER, DATABASE_USERNAME, DATABASE_PASSWORD);
mysql_select_db(DATABASE_NAME);
//save changes
$query = "UPDATE authors_aut SET fname_aut='" .$author->fname_aut."', lname_aut='" .$author->lname_aut."' WHERE id_aut=" . $author->id_aut;
$result = mysql_query($query);
return NULL;
}
}
?>

This is the class you will call from Flex. It has two methods: one to get all the records from the table, and another to update the values for one record.

Let’s create the code for the Value Object, the data model. This is used by the MyService class to wrap one row from the table. Thus, the method getData() returns an array of VOAuthor, and the method saveData() receives one argument: the VOAuthor of the row that was changed. Open the file VOAuthor.php and add this code:

<?php
class VOAuthor {
public $id_aut;
public $fname_aut;
public $lname_aut;
}
?>

As you can see, this class is very simple; it just provides the same members as the fields from the table. Finally let’s create the code for index.php file. This is the plumbing code that expose the MyService class to Flex clients with the help of the Zend AMF. Add the following code:

<?php
require_once('Zend/Amf/Server.php' );
require_once('MyService.php' );

$server = new Zend_Amf_Server();
//adding our class to Zend AMF Server
$server->setClass("MyService" );
//Mapping the ActionScript VO to the PHP VO
//you don't have to add the package name
$server->setClassMap("VOAuthor" , "VOAuthor" );
echo($server -> handle());
?>

I use an instance of Zend AMF server to create a PHP end point that can be called from Flex. Then I register the MyService class to the server, thus I can call this class from Flex. And finally I map the ActionScript data model (VOAuthor) to the PHP VOAuthor data model.

When you use remoting, you get the casting of the data to the right type for free. For example, MyService.getData() method returns an array of VOAuthor PHP objects. However, as you will see later, in Flex the result is an array of VOAuthor ActionScript objects.

Creating the Flex application

Now that you have the PHP code in place, you are ready to create the Flex code that will call the PHP class. I want the Flex application to have a button that gets the data from the server, uses a data grid to display the data, and enables the user to edit any cell (except ids) within the data grid. Whenever a cell is edited, the update is sent automatically to the server and saved to the database as well.

First, be sure to select the Flex perspective from the top right icons of Eclipse.

The next thing you need to do is to create a configuration file that Flex can use to reach the PHP service. Create the file services-config.xml in the root of the project. Open the file and add this code:

<?xml version="1.0"

 encoding="UTF-8"

?>
<services-config>
<services>
<service id="amfphp-flashremoting-service" class ="flex.messaging.services.RemotingService" messageTypes="flex.messaging.messages.RemotingMessage" >
<destination id="zend" >
<channels>
<channel ref ="my-zend" />
</channels>
<properties>
<source>*</source>
</properties>
</destination>
</service>
</services>
<channels>
<channel-definition id="my-zend" class ="mx.messaging.channels.AMFChannel" >
<endpoint uri="http://localhost/zendamf_remote/" class ="flex.messaging.endpoints.AMFEndpoint" />
</channel-definition>
</channels>
</services-config>

Be sure to check the endpoint node (at the bottom of the file); your URL to the zendamf_remote folder might be different. Set the value appropriately for your setup.

Now you need to tell Flex Builder to use this file when compiling the project. Right click on the project name in the Project Explorer and choose Properties. Select Flex Compiler and add the following to Additional compiler arguments field: -services “absolute_path_to_the_file/services_config.xml”:

Adding services_config to compile arguments

You will use a RemoteObject to communicate with the server, so add a mx:RemoteObject tag. You need to set the source attribute to MyService (this is the PHP class name) and the destination to zend – this is the destination created in the services-config.xml file. Also give a name to this object by adding an id attribute and set it to myRemote. Set the attribute showBusyCursor to true (whenever a call is made this will render the mouse icon as a watch, until a response from the server is received). The code should look like this:

<mx:RemoteObject id="myRemote"

 destination="zend"

 source="MyService"

 showBusyCursor="true"

>
</mx:RemoteObject>

Now you need to declare the methods you want to call on the PHP class, and add the listeners for fault and result events. The code is:

<mx:RemoteObject id="myRemote"

 destination="zend"

 source="MyService"

 showBusyCursor="true"

 fault="faultListener(event)"

>
<mx:method name="getData" result="getDataListener(event)" />
<mx:method name="saveData" result="saveDataListener(event)" />
</mx:RemoteObject>

Next you need a UI to make the call to the server and display/edit the data. A button and a data grid will do. Add this code above the RemoteObject code:

<mx:VBox top="30"

 left="100"

>
<mx:Button label="Get data" click="{myRemote.getData()}" />
<mx:DataGrid id="myGrid" editable="true" itemEditEnd="save(event)" />
</mx:VBox>

As you can see, the button calls the getData() method on the remoteObject. The data grid has an event listener registered for the itemEditEnd event.

The last step is to create the listeners you declared. For this, add an mx:Scrip t tag to your MXML application and define four functions in it:

<mx:Script>
<![CDATA[
import mx.controls.dataGridClasses.DataGridColumn;
import mx.events.DataGridEvent;
import org.corlan.VOAuthor;
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
import mx.collections.ArrayCollection;
/**
* listener for the data grid's itemEditEnd event
*/
privatefunction save(event :D ataGridEvent):void {
//we don't want to update the id of the item
if (event .dataField == "id_aut" ) {
event .preventDefault();
return ;
}
//retrieve the new value from the item editor instance
var dataGrid:DataGrid = event .target as DataGrid;
var col:DataGridColumn = dataGrid.columns[event .columnIndex];
var newValue:String = dataGrid.itemEditorInstance[col.editorDataField];
//retrieve the data model that was edited
var author:VOAuthor = event .itemRenderer.data as VOAuthor;
// if the value wasn't change, exit
if (newValue == author[event .dataField])
return ;
//update the model with the new values
author[event .dataField] = newValue;
//call the remote method passing the data we want to be saved
myRemote.saveData(author);
}
/**
* Result listener for get data operation
*/
privatefunction getDataListener(event :ResultEvent):void {
//set the result array as data provider for the data grid
myGrid.dataProvider = event .result as Array;
}
/**
* Result listener for save data operation
*/
privatefunction saveDataListener(event :ResultEvent):void {
Alert.show("The data was saved!" );
}
/**
* Fault listener for RemoteObject
*/
privatefunction faultListener(event :FaultEvent):void {
Alert.show(event .fault.message, "Error" );
}
]]>
</mx:Script>

Finally, you need to create the ActionScript Value Object that will act as a data model for the data sent from PHP. Right-click on the src folder from Flex Navigator, and choose New > ActionScript class. For the package type org.corlan , and for the name type VOAuthor . Click OK. Now it is time to add the members and some meta-data:

package org.corlan {
[RemoteClass(alias="VOAuthor" )]
[Bindable]
publicclass VOAuthor {
publicvar id_aut:int ;
publicvar fname_aut:String;
publicvar lname_aut:String;
}
}

The RemoteClass meta-data is very important. This tells to the ActionScript that the remote class (the one from PHP) that it maps to is called VOAuthor. If you forget this or you misconfigure it, you will get generic objects in ActionScript instead of VOAuthor, and associative arrays in PHP instead of VOAuthor.

You are done. There shouldn’t be any errors.

Now you are ready to test the code. Start the Flex application by clicking Run in the toolbar. When the application opens in your default browser, click the Get data button. You should see the data grid populated with some data:

Testing the application

To edit the items, just double click on any name and change something. When you finish editing, click outside the data grid. The changes will be sent to the server. If you don’t believe me, just go to the database and view the records.

Editing a cell

That’s it people!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值