JSON

Zend Framework手册 中文版(3)

字号+ 作者:H5之家 来源:H5之家 2017-11-21 10:05 我要评论( )

SMD stands for Service Mapping Description, a JSON schema thatdefines how a client can interact with a particular web service.At the time of this writing, the specificationhas not yet been formally r

SMD stands for Service Mapping Description, a JSON schema that defines how a client can interact with a particular web service. At the time of this writing, the specification has not yet been formally ratified, but it is in use already within Dojo toolkit as well as other JSON-RPC consumer clients.

At its most basic, a Service Mapping Description indicates the method of transport (POST, GET, TCP/IP, etc), the request envelope type (usually based on the protocol of the server), the target URL of the service provider, and a map of services available. In the case of JSON-RPC, the service map is a list of available methods, which each method documenting the available parameters and their types, as well as the expected return value type.

Zend_Json_Server_Smd provides an object oriented way to build service maps. At its most basic, you pass it metadata describing the service using mutators, and specify services (methods and functions).

The service descriptions themselves are typically instances of Zend_Json_Server_Smd_Service; you can also pass all information as an array to the various service mutators in Zend_Json_Server_Smd, and it will instantiate a service object for you. The service objects contain information such as the name of the service (typically the function or method name), the parameters (names, types, and position), and the return value type. Optionally, each service can have its own target and envelope, though this functionality is rarely used.

Zend_Json_Server actually does all of this behind the scenes for you, by using reflection on the attached classes and functions; you should create your own service maps only if you need to provide custom functionality that class and function introspection cannot offer.

Methods available in Zend_Json_Server_Smd include:

  • setOptions(array $options): Setup an SMD object from an array of options. All mutators (methods beginning with 'set') can be used as keys.

  • setTransport($transport): Set the transport used to access the service; only POST is currently supported.

  • getTransport(): Get the current service transport.

  • setEnvelope($envelopeType): Set the request envelope that should be used to access the service. Currently, supports the constants Zend_Json_Server_Smd::ENV_JSONRPC_1 and Zend_Json_Server_Smd::ENV_JSONRPC_2.

  • getEnvelope(): Get the current request envelope.

  • setContentType($type): Set the content type requests should use (by default, this is 'application/json').

  • getContentType(): Get the current content type for requests to the service.

  • setTarget($target): Set the URL endpoint for the service.

  • getTarget(): Get the URL endpoint for the service.

  • setId($id): Typically, this is the URL endpoint of the service (same as the target).

  • getId(): Retrieve the service ID (typically the URL endpoint of the service).

  • setDescription($description): Set a service description (typically narrative information describing the purpose of the service).

  • getDescription(): Get the service description.

  • setDojoCompatible($flag): Set a flag indicating whether or not the SMD is compatible with Dojo toolkit. When true, the generated JSON SMD will be formatted to comply with the format that Dojo's JSON-RPC client expects.

  • isDojoCompatible(): Returns the value of the Dojo compatibility flag (false, by default).

  • addService($service): Add a service to the map. May be an array of information to pass to the constructor of Zend_Json_Server_Smd_Service, or an instance of that class.

  • addServices(array $services): Add multiple services at once.

  • setServices(array $services): Add multiple services at once, overwriting any previously set services.

  • getService($name): Get a service by its name.

  • getServices(): Get all attached services.

  • removeService($name): Remove a service from the map.

  • toArray(): Cast the service map to an array.

  • toDojoArray(): Cast the service map to an array compatible with Dojo Toolkit.

  • toJson(): Cast the service map to a JSON representation.

  • Zend_Json_Server_Smd_Service has the following methods:

  • setOptions(array $options): Set object state from an array. Any mutator (methods beginning with 'set') may be used as a key and set via this method.

  • setName($name): Set the service name (typically, the function or method name).

  • getName(): Retrieve the service name.

  • setTransport($transport): Set the service transport (currently, only transports supported by Zend_Json_Server_Smd are allowed).

  • getTransport(): Retrieve the current transport.

  • setTarget($target): Set the URL endpoint of the service (typically, this will be the same as the overall SMD to which the service is attached).

  • getTarget(): Get the URL endpoint of the service.

  • setEnvelope($envelopeType): Set the service envelope (currently, only envelopes supported by Zend_Json_Server_Smd are allowed).

  • getEnvelope(): Retrieve the service envelope type.

  •  

  • 1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

    相关文章
    • Python的Json方法

      Python的Json方法

      2017-11-18 12:10

    • Springmvc下的jquery,ajax和json的等技术的运用

      Springmvc下的jquery,ajax和json的等技术的运用

      2017-10-07 16:00

    • JSON中文在线手册

      JSON中文在线手册

      2017-08-26 15:08

    • 学习Linux精神绝招

      学习Linux精神绝招

      2017-08-24 11:00

    网友点评