I use Zend Rest Server class to handle rest srvice:
public function restAction() {
$service = new Zend_Rest_Server();
$service->setClass($this->_serviceClassName);
$service->handle();
}
In the Zend_Rest_Server the response header
<myApi generator="zend" version="1.0">
How to change the generator to different string?
Thanks Arman.