Zend_Rest.xml 1.1 KB

12345678910111213141516171819202122232425262728
  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 XML 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 URL
  9. parameters (GET 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 XML 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. </sect1>
  23. <!--
  24. vim:se ts=4 sw=4 et:
  25. -->