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.

  • 相关阅读:
    二级目录下的SESSION共享问题
    [Leetcode 65] 120 Triangle
    JMeter学习(一)工具简单介绍
    pycham破解方法——Mac上亲测成功
    jmeter目前发现一丢丢强大的功能(未完待续,需优化)
    jmeter实现请求返回参数利用到下一个请求中
    通用化case,拿走不谢——测试之路
    mac 下pip安装python三方库的时候提示 Could not fetch URL https://pypi.python.org/simple/virtualenv/: There was a problem confirming the ssl certificate:......
    sudo pip install MySQLdb找不到该资源的原因
    软件质量管理实践总结
  • 原文地址:https://www.cnblogs.com/lauraxia/p/2917537.html
Copyright © 2011-2022 走看看