Zend_Rest.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.rest.introduction">
  4. <title>Introduction</title>
  5. <para>
  6. REST Web Services use service-specific <acronym>XML</acronym> formats. These ad-hoc
  7. standards mean that the manner for accessing a REST web service is
  8. different for each service. REST web services typically use <acronym>URL</acronym>
  9. parameters (<constant>GET</constant> data) or path information for requesting data and POST
  10. data for sending data.
  11. </para>
  12. <para>
  13. Zend Framework provides both Client and Server capabilities, which,
  14. when used together allow for a much more "local" interface experience
  15. via virtual object property access. The Server component features
  16. automatic exposition of functions and classes using a meaningful and
  17. simple <acronym>XML</acronym> format. When accessing these services using the Client, it is
  18. possible to easily retrieve the return data from the remote call. Should
  19. you wish to use the client with a non-Zend_Rest_Server based service, it
  20. will still provide easier data access.
  21. </para>
  22. <para>
  23. In addition to <classname>Zend_Rest_Server</classname> and
  24. <classname>Zend_Rest_Client</classname> components, <link
  25. linkend="zend.controller.router.routes.rest"><classname>Zend_Rest_Route</classname> and
  26. <classname>Zend_Rest_Controller</classname></link> classes are provided to aid routing
  27. REST requests to controllers.
  28. </para>
  29. </sect1>
  30. <!--
  31. vim:se ts=4 sw=4 et:
  32. -->