Zend_Server.xml 1.2 KB

123456789101112131415161718192021222324252627
  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
  11. <acronym>PHP</acronym> 5's <classname>SoapServer</classname> class; all server classes
  12. should implement this interface in order to provide a standard server
  13. <acronym>API</acronym>.
  14. </para>
  15. <para>
  16. The <classname>Zend_Server_Reflection</classname> tree provides a standard
  17. mechanism for performing function and class introspection for use as
  18. callbacks with the server classes, and provides data suitable for use
  19. with <classname>Zend_Server_Interface</classname>'s <methodname>getFunctions()</methodname>
  20. and <methodname>loadFunctions()</methodname> methods.
  21. </para>
  22. </sect1>
  23. <!--
  24. vim:se ts=4 sw=4 et:
  25. -->