When I post data to server redirect happens:
$view = $this->routeRedirectView('get_config', array('id' => $config->getId()));
return $this->handleView($view);
Here is a code of action where request is being redirected to:
/**
* @View()
*/
public function getConfigAction($id)
{
$config = $this->getConfigById($id);
return array('configs' => array($config));
}
Creation works correctly. However redirect is not working as I would want it to work. When I execute the following command
curl -v -H "Accept: application/xml" -H "Content-type: application/json" -X POST \
-d '{"config": {"name": "TEST1"}}' http://localhost:8888/app_dev.php/configs
The output is:
< HTTP/1.0 201 Created
< Date: Wed, 19 Dec 2012 14:13:17 GMT
< location: http://localhost:8888/app_dev.php/configs/12
I can't manage the response to contain newly created entity. Here is desired output:
< HTTP/1.0 201 Created
< Date: Wed, 19 Dec 2012 14:13:17 GMT
< location: http://localhost:8888/app_dev.php/configs/12
<?xml version="1.0" encoding="UTF-8"?>
<result>
<entry>
<entry>
<id>12</id>
<name><![CDATA[TEST1]]></name>
</entry>
</entry>
</result>