博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.net与Flex交互测试记录
阅读量:6815 次
发布时间:2019-06-26

本文共 1843 字,大约阅读时间需要 6 分钟。

一、利用asp.net为提供数据服务,flex为前端表现。
  二、flex通过三种方式四种代码实现来取数据。分别为
  HttpService、
  WebService、
  RemoteObject、
  RemoteObjectAMF0。
  
三、Project文件夹中的
  Vs2010Service提供HttpService、Webservice服务;
  Vs2008RemoteObject提供RemoteObject服务。
 
 四、FluorineFx.NET+RemoteObjectAMF0文件为附加文件。
  五、<sessionState cookieless="AutoDetect"></sessionState>
  设置可兼容客户端禁用Cookie(要在Flex项目中传递回sessionid)
  
六、asmx中使用session需要[WebMethod(EnableSession = true)] 如此设置。
  七、安装FluorineFx.NET+RemoteObjectAMF0文件下的setup(FluorineFx.NET).exe
  可以将项目模板集成到2005和2008中,不支持vs2010。
  
八、使用七中的模板建立普通网站(FluorineFx ASP.NET Web Site)项目。
  将Console.aspx设为启动页,可进行类中的方法。
  
九、使用RemoteObjectAMF0时将renaun_com_RemoteObjectAMF0.zip解压把src下的
  com文件夹整体复制到flex项目中;
  注意路径与mxml同路径;
  RemoteObjectAMF0.as中的override public function setCredentials( username:String, password:String):void)修改成override public function setCredentials( username:String, password:String,charset:String=null ):void)
  添加xmlns:renaun="com.renaun.rpc.*"到<mx:Application ……中。
  
十、使用普通RemoteObject在mxml的同目录下添加services_config.xml文件内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<services-config>
<services>
<service id="remoting-service"
class="flex.messaging.services.RemotingService"
messageTypes="flex.messaging.messages.RemotingMessage">
<destination id="fluorine">
<channels>
<channel ref="my-amf"/>
</channels>
<properties>
<source>*</source>
</properties>
</destination>
</service>
</services>
<channels>
<channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
<endpoint uri="http://localhost:12432/ReomteFlex/Gateway.aspx" class="flex.messaging.endpoints.AMFEndpoint"/>
</channel-definition>
</channels>
</services-config>
  注:http://localhost:12432/ReomteFlex/Gateway.aspx随项目启动的端口变化。
  之后,Flex项目右键-属性-Flex compiler-compiler参数(-locale en_US -services "services_config.xml")
最新内容请见作者的GitHub页:http://qaseven.github.io/

转载地址:http://ndczl.baihongyu.com/

你可能感兴趣的文章
HDU 1018 Big Number(数论,Stirling公式)
查看>>
从零开始做SSH项目(二)
查看>>
spring ioc aop 理解
查看>>
222
查看>>
在使用react时的异步问题解决
查看>>
Java调用solrj5.5.3接口,查询数据
查看>>
Python中的logging模块
查看>>
plink, vcftool计算等位基因频率(allele frequency,vcf)
查看>>
变量和赋值
查看>>
mysql的优化
查看>>
关于域证书的发布CA和CRL的内容 (Windows 2008 Server R2 SP1)
查看>>
软件测试英语专业词汇汇总
查看>>
Java实现word文档在线预览,读取office(word,excel,ppt)文件
查看>>
python笔记(五)装饰器函数
查看>>
Permutations II
查看>>
Super Ugly Number
查看>>
(转载)UTF-8和GBK的编码方式的部分知识:重要
查看>>
convert RGB image to a 2x2 [GR;BG] Bayer pattern
查看>>
机器学习 -- 机器学习是什么?
查看>>
三台机器之间ssh互信配置
查看>>