国产探花免费观看_亚洲丰满少妇自慰呻吟_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>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 临泉县| 门头沟区| 泰安市| 辽源市| 同江市| 汽车| 噶尔县| 望都县| 沧源| 台南县| 剑阁县| 东平县| 齐齐哈尔市| 武山县| 南开区| 西宁市| 麻栗坡县| 香港 | 翁牛特旗| 临安市| 沿河| 拉萨市| 陇南市| 保亭| 遂宁市| 永仁县| 广德县| 肇东市| 股票| 琼结县| 托克逊县| 黄冈市| 台南县| 华亭县| 罗甸县| 玉树县| 德化县| 鄂州市| 肃北| 拜泉县| 马龙县|