Flash Builder+FluorineFx访问数据库回顾总结

环境搭建
安装顺序IIS7--》SQL2008--》VS2010--》FB4--》FluorineFxTemp
 
建项
1.SQL中建表。
2.VS2010中新建FluorineFX Enabled Web Application项目,将FlashRemotingWebApplication设为起始程序,Console.aspx设为起始页,添加App_Code文件夹,右键添加类并修改其属性内容-》编译,编写SQL语言与数据库交互,运行并生成。
添加引用
Flash Builder+FluorineFx访问数据库回顾总结_第1张图片
Bin目录下自动创建了相关的 dll 引用,在这里最重要的是 log4net.dll、 FluorineFx.dll 和 FluorineFx.ServiceBrowser.dllusing FluorineFx;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
3.IIS中新建网站,物理路径确定到FlashRemotingWebApplication,程序应用池设置为Framework4.0,目录启用,在模块中添加托管模块,托管模块名称FluorineGateway为web-config文件中system.web中的add,添加后查看web-config文件中的system.webServer中是否添加了add。
IIS7需要添加一个模块,FluorineGateway,类型FluorineFx.FluorineGateway, FluorineFx
4.IIS发布成功后,修改service-config文件中的uri为http://localhost:8002/Gateway.aspx,保存。
5.Flex新建项目,建项过程中选择ASP.Net,并设置其Application URL等,参数查看IIS发布网页中的Project settings;设置项目属性中-services “.../services-config.xml”,编程过程中注意函数的参数类型和个数
6.Flex中RemoteObject组件的相关设置,id为自定义,destination与VS2010中remoting-config中的destination一致,method为函数,result可自定义,参数为(event),编写对应的result的函数。
7.Flex调试,将bin-debug中的flah文件添加到flashplayer_11_sa_debug中运行,出错会报错。

你可能感兴趣的:(Flash Builder+FluorineFx访问数据库回顾总结)