ZF-9763: Zend_Rest_Server: XML output should not include generator, class and method information

Description

Currently the XML generated by Zend_Rest_Server includes the class and method names called by the Zend_Rest_Server instance. This causes potential security concerns as it exposes the private details of the implementation.

For example, from the output:


1Car2Trucksuccess

One can gather that it was generated with Zend Framework using the call Test_Service_Product::getRecent.

Zend_Rest_Server should provide the option to only output the data as XML:


1Car2Truck

Comments

No comments to display