国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > WEB開發 > 正文

18.8.注冊服務端數據類型

2024-04-27 13:52:26
字體:
來源:轉載
供稿:網友
18.8.1. 問題
我需要在自己的應用程序中注冊服務端數據類型,以便從RemoteObject 返回的對象能正確轉換為遠程類的實例。
18.8.2. 解決辦法
使用flash.net.RegisterClass 方法或在類申明中標記類為RemoteClass。
18.8.3. 討論
在反序列化AMF 數據中的對象為類對象時,該類必須事先在Flash Player 中注冊,這樣反序列化才能得到正確的數據類型,如下面C#定義的類型:
+展開
-C#
using System;
using System.Collections;
namespace oreilly.cookbook.vo
{
public class RecipeVO {
public string title;
public ArrayList ingredients;
public ArrayList instructions
public RecipeVO(){}
}
}

ActionScript 對應的類型為:
+展開
-ActionScript
package oreilly.cookbook.vo
{
public class RecipeVO
public var ingredients:Array;
public var instructions:Array;
public var title:String;
public function RecipeVO(){}
}

服務將會在C#中創建RecipeVO 對象并返回:
+展開
-C#
using System;
using System.Web;
using oreilly.cookbook.vo;
namespace oreilly.cookbook.service
{
public class RecipeService
{
public RecipeService() { }
public RecipeVO getRecipe() {
RecipeVO rec = new RecipeVO();
rec.title = "Apple Pie";
string[] ingredients = {"flour""sugar""apples""eggs""water"};
rec.ingredients = new ArrayList(ingredients);
string[] instructions = {"instructions are long""baking is hard","maybe I'll just buy it at the store"};
rec.instruction = new ArrayList(instructions);
return rec;
}
}
}

當服務返回時,可以這樣訪問RecipeVO:
+展開
-XML
<mx:RemoteObject id="recipeServicedestination="fluorinesource="oreilly.cookbook.FlexServiceshowBusyCursor="trueresult="roResult(event)fault="roFault(event)" />
<mx:Script>
<![CDATA[
private function initApp():void {
// we have to register the object for the result to be able to properly cast
// as the RecipeVO
flash.net.registerClassAlias("oreilly.cookbook.vo.RecipeVO", RecipeVO);
}
public function serviceResult(e:ResultEvent):void {
var rec:RecipeVO = (e.result as RecipeVO)
}
public function serviceFault(e:FaultEvent):void {
trace(" Error :: "+(e.message as String));
}

]]>
</mx:Script>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 延吉市| 南乐县| 湘阴县| 普兰店市| 轮台县| 华蓥市| 颍上县| 九龙城区| 桐乡市| 桐城市| 蓝山县| 贺兰县| 乐东| 乡城县| 南木林县| 永寿县| 麦盖提县| 曲水县| 宣汉县| 米林县| 昌吉市| 子洲县| 灌阳县| 循化| 英德市| 平山县| 新宁县| 陆良县| 建水县| 乌拉特中旗| 田阳县| 崇仁县| 道孚县| 桐庐县| 砚山县| 镇原县| 汾西县| 南康市| 澄江县| 桃江县| 新营市|