zoukankan      html  css  js  c++  java
  • flex HTTPService

    Flash Player and Adobe AIR don't have the capabilit to communicate directly with server-based data storage applications such as database and Lightweight Directory Access Protocol(LDAP) servers. Instead, they're designed to communicate with middleware application servers using a variety of protocols.HTTPService component has the most flexibility in terms of format of messages that are exchanged between the client and server at runtime. you can use the HTTPService component with any applicaiton server,because it exchanges data in the form of simple HTTP parameters and XML of an flavor.

    RPC and REST are acronyms that represent architectural styles.

    REST stands for Representational Stare Transfer, and it represents a software architecture or design pattern that can be implemented with numerous client-based and server-based platforms for the web. A "RESTful" architecture enables a local client system to retrieve resources stored in a remote system without necessarily requiring a remote dynamic application server.

    RPC represents a software architecture that enables a computer program in one operating environment to cause functions to be executed in separate, remote operating environments.RPC-style architectures are typically implemented in Flex with a dynamic Web server that can respond to complex HTTP requests.

    HTTPService component: makes standard HTTP requests to any Web server environment, and uses eigher plain text or any well-formed XML language as its message format.

    RemoteObject: communicates with application servers using the binary AMF

    WebService: makes requests to and handles responses from application servers that support the industry-standard SOAP message format

    after connect to HTTP in the connect to Data/Service dialog box, you will the data/services view has been actived.

    When data is returned from an HTTPService request, it's defined by default as an ActionScript Object.

    Essential HTTPService properties

    the HTTPService component implements these properties that determine where the request is made and what HTTP methods are used:

    concurrency:String. a rule that determines how to handle multiple concurrent calls to the same network resource

    method:String: the HTTP method to be used

    resultFormat:String

    showBusyCursor:Boolean

    url:String the web address to which the request is sent

    Handling the result event:

    When data is returned from the remote server, the HTTPService object dispatches a result event, whose event object is typed as mx.rpc.events.resultEvent. this reusltevent class has a result property that refers to the returned data.

  • 相关阅读:
    flash制作的swc库文件如何在flex中使用
    AS关于子类父类关于侦听(addEventListener)的问题
    AS3中的Timer和Event.EnterFrame的区别
    java 将short,int,string转化成bytearray用socket发送
    一些要点
    flex中关于swf的导入注意事项
    AS3如何外部加载swf,并使用其中的元件或者类
    Winform 快速开发框架,上位机开发,工控机程序开发,CS程序开发
    Fanuc Cnc 数控系统,PC端下发NC程序到CNC端,现场测试通过。
    开箱即用的,强大的通用升级组件,五分钟移植到你新旧项目中。
  • 原文地址:https://www.cnblogs.com/lauraxia/p/2917537.html
Copyright © 2011-2022 走看看