Programmer's Reference Guide

Zend_Rest_Client

Zend_Rest_Server

Introduction

Zend_Rest_Server est prévu comme un serveur supportant l'ensemble des fonctionnalités d'un serveur REST.

Utilisation d'un serveur REST

Exemple #1 Utilisation basique Zend_Rest_Server - Avec des classes

  1. $server = new Zend_Rest_Server();
  2. $server->setClass('Mon_Service_Classe');
  3. $server->handle();

Exemple #2 Utilisation basique Zend_Rest_Server - Avec des fonctions

  1. /**
  2. * Dit Bonjour
  3. *
  4. * @param string $qui
  5. * @param string $quand
  6. * @return string
  7. */
  8. function ditBonjour($qui, $quand)
  9. {
  10.     return "Bonjour $qui, bonne $quand";
  11. }
  12.  
  13. $server = new Zend_Rest_Server();
  14. $server->addFunction('ditBonjour');
  15. $server->handle();

Appelé un service Zend_Rest_Server

Pour appeler un service Zend_Rest_Server, vous devez fournir un argument de method GET/POST avec une valeur qui est la méthode que vous souhaitez appeler. Vous pouvez alors ajouter tout nombre d'arguments en utilisant le nom de l'argument (c.-à-d. "qui ") ou en utilisant 'arg' suivi de la position numérique de l'argument (c.-à-d. "arg1").

Note: Index numérique
Les arguments numériques utilisent 1 comme point de départ.

Pour appeler le ditBonjour de l'exemple ci-dessus, vous pouvez employer soit :

?method=ditBonjour&qui=Davey&quand=journée

or:

?method=ditBonjour&arg1=Davey&arg2=journée

Envoyer un statut personnalisé

En envoyant des valeurs, pour ajouter un statut personnalisé, vous pouvez envoyer un tableau avec une clé status.

Exemple #3 Renvoyer un statut personnalisé

  1. /**
  2. * Dit Bonjour
  3. *
  4. * @param string $qui
  5. * @param string $quand
  6. * @return array
  7. */
  8. function ditBonjour($qui, $quand)
  9. {
  10.     return array('msg' => "Une erreur est apparue", 'status' => false);
  11. }
  12.  
  13. $server = new Zend_Rest_Server();
  14. $server->addFunction('ditBonjour');
  15. $server->handle();

Renvoyer une réponse XML personnalisée

Si vous voulez retourner du XML personnalisé, retournez simplement un objet DOMDocument, DOMElement ou SimpleXMLElement.

Exemple #4 Renvoyer une réponse XML personnalisée

  1. /**
  2. * Dit Bonjour
  3. *
  4. * @param string $who
  5. * @param string $when
  6. * @return SimpleXMLElement
  7. */
  8. function ditBonjour($qui, $quand)
  9. {
  10.     $xml ='<?xml version="1.0" encoding="ISO-8859-1"?>
  11. <mysite>
  12.     <value>Salut $qui! J\'espère que tu passes une bonne $when</value>
  13.     <constant>200</constant>
  14. </mysite>';
  15.  
  16.     $xml = simplexml_load_string($xml);
  17.     return $xml;
  18. }
  19.  
  20. $server = new Zend_Rest_Server();
  21. $server->addFunction('ditBonjour');
  22.  
  23. $server->handle();

La réponse du service sera retournée sans modification au client.


Zend_Rest_Client

Comments

@Andrew: Agreed. I wish this was more informative.
How is requesting a "sayHello" method RESTful? "sayHello" is not a resource, so I don't understand how this is RESTful at all. Calling a custom method is a SOAP paradigm.

I also don't understand what this "Zend_Rest_Server" is supposed to do and why it's useful. "Zend_Rest_Server is intended as a fully-featured REST server." is not enough to explain what this class is intended to be used for. A REST server should be able to:

1. receive and parse a request
2. retrieve, create, update, or delete the requested resource
3. then respond with a representation of the resource in the appropriate format (XML or JSON)

...and that's it! Nothing more. Nothing less.

There is nothing in this documentation that makes me think that Zend_Rest_Server does any of that. How are we even supposed to use this?
Thanks again Zend for providing useful documentation.
I doubt if Zend really have to provide the server and client APIs, coz they are not adding any value to RESTfulness of a Web Service

I would expect these server and client classes to provide some common framework method on handling requests, responses, errors, GET, POST, PUT, DELETE methods


Like a POST and PUT methods should always return the URI of the resource just got created or updated.

I don't see any such thing in these classes, hence better these should be removed, else programmers will wrongly use these, which is more of SOAP or RPC rest invocation classes.
to use put you have to add this

resources.frontController.plugins.putHandler = "Zend_Controller_Plugin_PutHandler"

it's basically a crappy little helper that checks to see if there's a put request and if so then it puts the variables you're sending along with it into the params. idk why the params aren't included by default when trying to see your vars passed in the putAction
You're right, this class's documentation is shocking. But Zend does come with a good Rest solution, it's just not here. It's hidden in the Controller docs:

http://framework.zend.com/manual/en/zend.controller.router.html#zend.controller.router.routes.rest

Zend_Rest_Server, as pointed out in this comments, isn't really that useful and is probably on its way out.

+ Add A Comment

Please do not report issues via comments; use the ZF Issue Tracker.

If you have a JIRA/Crowd account, we suggest you login first before commenting.

  • BBCode is allowed in the comment markup

  • Select a Version

    Languages Available

    Components

    Search the Manual