Zend_Server.xml 1.2 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.server.introduction">
  4. <title>Introduction</title>
  5. <para>
  6. The <classname>Zend_Server</classname> family of classes provides functionality
  7. for the various server classes, including
  8. <classname>Zend_XmlRpc_Server</classname>, <classname>Zend_Rest_Server</classname>,
  9. <classname>Zend_Json_Server</classname> and <classname>Zend_Soap_Wsdl</classname>.
  10. <classname>Zend_Server_Interface</classname> provides an interface that mimics <acronym>PHP</acronym>
  11. 5's <code>SoapServer</code> class; all server classes should implement
  12. this interface in order to provide a standard server <acronym>API</acronym>.
  13. </para>
  14. <para>
  15. The <classname>Zend_Server_Reflection</classname> tree provides a standard
  16. mechanism for performing function and class introspection for use as
  17. callbacks with the server classes, and provides data suitable for use
  18. with <classname>Zend_Server_Interface</classname>'s <methodname>getFunctions()</methodname>
  19. and <methodname>loadFunctions()</methodname> methods.
  20. </para>
  21. </sect1>
  22. <!--
  23. vim:se ts=4 sw=4 et:
  24. -->