Flex提供RPC服務(wù)以向客戶端提供服務(wù)器端數(shù)據(jù)。 Flex對服務(wù)器端數(shù)據(jù)提供了相當(dāng)大的控制。
使用Flex RPC服務(wù),我們可以定義要在服務(wù)器端執(zhí)行的用戶操作。
Flex RPC服務(wù)可以與任何服務(wù)器端技術(shù)集成。
Flex RPC服務(wù)之一提供對通過線傳輸?shù)膲嚎s二進(jìn)制數(shù)據(jù)的內(nèi)置支持,并且速度非??臁?/span>
Flex提供以下三種類型的RPC服務(wù)
RPC服務(wù) | 描述 |
---|---|
HttpService | < mx:HTTPService> 標(biāo)簽用于表示MXML文件中的HTTPService對象。 當(dāng)您調(diào)用HTTPService對象的send()方法時,它會向指定的URL發(fā)出HTTP請求,并返回HTTP響應(yīng)。您還可以使用HTTP HEAD,OPTIONS,TRACE和DELETE方法。 |
WebService | < mx:WebService> 標(biāo)簽用于訪問符合SOAP的Web服務(wù)的操作。 |
RemoteObject | < mx:RemoteObject> 標(biāo)簽用于表示MXML文件中的HTTPService對象。 此標(biāo)記使您能夠使用動作消息格式(AMF)編碼訪問Java對象的方法。 |
我們將詳細(xì)討論HTTP服務(wù)。 我們將使用放置在服務(wù)器上的XML源文件,并通過HTTP服務(wù)在客戶端訪問它
<items> <item name="Book" description="History of France"></item> <item name="Pen" description="Parker Pen"></item> <item name="Pencil" description="Stationary"></item> <items>
現(xiàn)在聲明一個HTTPService并傳遞上述文件的url
<fx:Declarations> <mx:HTTPService id="itemRequest" url="//o2fo.com/flex/Items.xml" /> </fx:Declarations>
調(diào)用itemRequest.send()方法,并將值從itemRequest webservice的lastResult對象綁定到Flex UI組件。
... itemRequest.send(); ... <mx:DataGrid id="dgItems" height="80%" width="75%" dataProvider="{itemRequest.lastResult.items.item}"> <mx:columns> <mx:DataGridColumn headerText="Name" dataField="name"/> <mx:DataGridColumn headerText="Description" dataField="description"/> </mx:columns> </mx:DataGrid>
現(xiàn)在讓我們按照以下步驟在Flex應(yīng)用程序中測試RPC服務(wù):
步驟 | 描述 |
---|---|
1 | 在 Flex - 創(chuàng)建應(yīng)用程序章節(jié)中所述,在包 com.tutorialspoint.client 下創(chuàng)建名為 HelloWorld 的項目。 |
2 | 修改 HelloWorld.mxml ,如下所述。 保持文件的其余部分不變。 |
3 | 編譯并運行應(yīng)用程序,以確保業(yè)務(wù)邏輯按照要求工作。 |
以下是修改后的mxml文件 src / com.tutorialspoint / HelloWorld.mxml 的內(nèi)容。
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="500" minHeight="500" creationComplete="init(event)"> <fx:Style source="/com/tutorialspoint/client/Style.css"/> <fx:Script> <![CDATA[ import mx.events.FlexEvent; import mx.rpc.events.FaultEvent; import mx.rpc.events.ResultEvent; protected function init(event:FlexEvent):void { itemRequest.send(); } ]]> </fx:Script> <fx:Declarations> <mx:HTTPService id="itemRequest" url="//o2fo.com/flex/Items.xml" /> </fx:Declarations> <s:BorderContainer width="630" height="480" id="mainContainer" styleName="container"> <s:VGroup width="100%" height="100%" gap="10" horizontalAlign="center" verticalAlign="middle"> <s:Label id="lblHeader" text="RPC Service Demonstration" fontSize="40" color="0x777777" styleName="heading"/> <s:Panel id="parentPanel" title="Using RPC Services" width="500" height="200" > <s:layout> <s:VerticalLayout gap="10" verticalAlign="middle" horizontalAlign="center"/> </s:layout> <mx:DataGrid id="dgItems" height="80%" width="75%" dataProvider="{itemRequest.lastResult.items.item}"> <mx:columns> <mx:DataGridColumn headerText="Name" dataField="name"/> <mx:DataGridColumn headerText="Description" dataField="description"/> </mx:columns> </mx:DataGrid> </s:Panel> </s:VGroup> </s:BorderContainer> </s:Application>
準(zhǔn)備好所有更改后,讓我們以正常模式編譯和運行應(yīng)用程序,就像在 Flex - 創(chuàng)建應(yīng)用程序中一樣 章節(jié)。 如果一切順利,您的應(yīng)用程序,這將產(chǎn)生以下結(jié)果:[在線試用]
更多建議: