Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
2k views

How to set up Hierarchical Zend Rest Routes?

With the Zend Framework, I am trying to build routes for a REST api on resources organized in the following pattern: http://example.org/users/ http://example.org/users/234 ...
4
votes
3answers
5k views

Zend Framework 1.9.2+ Zend_Rest_Route Examples

With the introduction of Zend_Rest_Route in Zend Framework 1.9 (and its update in 1.9.2) we now have a standardized RESTful solution for routing requests. As of August 2009 there are no examples of ...
3
votes
2answers
216 views

Zend framework Restful webserive logic usage

I am building an application using zend framework. The question is, how to use the same controller logic of the Zend_Rest_Controller within a non-REST app. For instance, let's assume twitter was ...
1
vote
1answer
247 views

Zend_Rest_Route for a specific controller

I'm trying to make a Zend_Rest_Route for a specific controller. I want the rest of my site to behave normally, except when a particular Controller (UploadAPI) is requested. I think the sytnax should ...
1
vote
2answers
521 views

Zend framework question about rest and modules

Guys I have the following structure in my project. application/ Bootstrap.php configs/ application.ini modules/ default/ controllers/ models/ views/ ...
0
votes
1answer
89 views

Zend Framework route for Sub Folders with Rest

For my current Application Setup i am trying to create a routing for Standard Controllers and Rest Controllers. This is my Structure. /application /modules /module /controllers ...
0
votes
1answer
229 views

Zend Rest Route with hierarchy

Currently I have a REST route working for an Event controller (/event). I would like to handle Event SignUps in an EventSignUp controller, and map this controller to a /event/signups route. The Zend ...