File: Zend_Server.xml

package info (click to toggle)
zendframework 1.12.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 133,584 kB
  • sloc: xml: 1,311,829; php: 570,173; sh: 170; makefile: 125; sql: 121
file content (27 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<!-- Reviewed: no -->
<sect1 id="zend.server.introduction">
    <title>Introduction</title>

    <para>
        The <classname>Zend_Server</classname> family of classes provides functionality
        for the various server classes, including
        <classname>Zend_XmlRpc_Server</classname>, <classname>Zend_Rest_Server</classname>,
        <classname>Zend_Json_Server</classname> and <classname>Zend_Soap_Wsdl</classname>.
        <classname>Zend_Server_Interface</classname> provides an interface that mimics
        <acronym>PHP</acronym> 5's <classname>SoapServer</classname> class; all server classes
        should implement this interface in order to provide a standard server
        <acronym>API</acronym>.
    </para>

    <para>
        The <classname>Zend_Server_Reflection</classname> tree provides a standard
        mechanism for performing function and class introspection for use as
        callbacks with the server classes, and provides data suitable for use
        with <classname>Zend_Server_Interface</classname>'s <methodname>getFunctions()</methodname>
        and <methodname>loadFunctions()</methodname> methods.
    </para>
</sect1>
<!--
vim:se ts=4 sw=4 et:
-->