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 ...
2
votes
2answers
208 views

Change addActionContext() to be XML only

I've got Zend code which looks like this: $contextSwitch->addActionContext('get', array('xml','json'))->initContext(); How can I change this so that it ONLY returns XML formatted data? SOrry, ...
1
vote
0answers
98 views

Converting zend_rest's output to json

I am developing a REST api in joomla using Zend_Rest. As Zend components can be decoupled, I am not using the whole Zend framework in my joomla installation but rather the Zend_Loader and the ...
1
vote
2answers
230 views

Correct code structure when providing REST API access using Zend_Rest_Controller

I'm new to Zend Frameworks and MVC type programming (not PHP though) and I'm trying to provide API access to data on my server using the Zend Framework. I'm using Chris Danielson's article ...
1
vote
1answer
1k views

Zend Rest Client issue

Hi all i have the codes below class ReservationController extends Zend_Controller_Action { public function init() { } public function indexAction() { ...
0
votes
1answer
32 views

Zend_Rest_Controller upload file

I have no strong php or Zend background, please bear with me if I asked silly questions. I am trying to upload an image to Amazon Web Service S3, via Zend Framework's REST controller. Most examples ...
0
votes
1answer
27 views

Android HttpGet is requesting indexAction

my HttpGet request is calling my indexAction, instead of getAction. What's going on? Here are my codes: public function getAction() { $id = $this->_getParam('id'); if(!$id) { ...
0
votes
1answer
37 views

How to ensure several parameters validation in a Zend_Rest_Controller?

I need to make sure that several parameters are provided in my Zend_Rest_Controller. Here is my code: public function indexAction() { $filters = array( 'locid' => ...
0
votes
1answer
85 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
54 views

How to change the Zend_Rest_Server response header 'zend' to “my_api”?

I use Zend Rest Server class to handle rest srvice: public function restAction() { $service = new Zend_Rest_Server(); $service->setClass($this->_serviceClassName); ...
0
votes
1answer
52 views

Using sub classes with Zend_Rest_Server

Zend_Rest_Server and Zend_Rest_Client is pathetically under-documented, so I keep running into these mind numbingly irritating problems. So, in order to streamline my API methods I would invoke ...
0
votes
1answer
218 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 ...
0
votes
0answers
148 views

Return restful json responses for put and post actions in zf

What is the right way to create restful json response to put and post Actions with Zendframework? The responses should be usable for Dojo and extJS. Layout helpers are disabled. A simplified code of ...
0
votes
2answers
148 views

Examples on Zend_Rest_Controller Unit Testing

I have found a bunch of examples how to unit test Zend_Controller, but I'm looking for examples on Zend_Rest_Controller Unit Testing. Any help is really appreciated. Thank you!
0
votes
0answers
138 views

Doing a POST on a getAction() in Zend_Rest_Controller

I'm new to Zend Frameworks and MVC type programming (not PHP though) and I'm trying to provide API access to data on my server using the Zend Framework. I'm using Chris Danielson's article ...
0
votes
1answer
116 views

How to call the Lithium Forum API from Zend_Rest_Client

I'm trying to access a Lithium Forum Rest API using Zend_Rest_Client. The API is described here: http://cl.ly/3N0M2D0k0H3L0Y103Q3R The API docs give example calls such as e.g. ...
0
votes
1answer
190 views

Change default REST response to be only XML in Zend

I've worked on this code base and it responds with html when i access a site www.site.com/version/ However, If i access www.site.com/version?format=xml, it displays output in xml. How can I change ...
0
votes
1answer
149 views

Mutiple ids on Rest Router / Zend?

I think I have the same issue as this guy - http://framework.zend.com/issues/browse/ZF-9385?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel "If I call something like this ...
0
votes
1answer
1k views

Examples of building a REST API server using Zend Framework?

I'm new to Zend Framework (not to PHP), and I need to create a REST based API using Zend. I've seen examples using Zend_Rest_Server, however other sources state that that has been deprecated. I'm ...
0
votes
2answers
866 views

Zend_Rest_Server + Zend_Rest_Client, variable not read

What i am trying to do is pass $rest->apikey to my Zend_Rest_Server. The empAction creates the array needed by my Zend_Rest_Server. But in getByShortname($id,$apikey), I cannot read the $apikey. They ...
0
votes
1answer
619 views

Zend_Rest_Client - error on localhost

I am using Zend_Rest_Client to connect Zend_Rest_Server, everything seems to be allright, but when I try to get() from the server I recieve this error: Zend_Http_Client_Adapter_Exception: Unable ...