[Controller] Any kind of exception are now re-thrown as SoapFault.

This commit is contained in:
Pierre-Yves LEBECQ 2013-07-17 10:48:21 +02:00
parent 90903e8a1b
commit 5dc1c4f917
1 changed files with 6 additions and 2 deletions

View File

@ -123,10 +123,14 @@ class SoapWebServiceController extends ContainerAware
// forward to controller
try {
$response = $this->container->get('http_kernel')->handle($this->soapRequest, HttpKernelInterface::SUB_REQUEST, false);
} catch (\SoapFault $e) {
} catch (\Exception $e) {
$this->soapResponse = new Response(null, 500);
throw $e;
if ($this->container->getParameter('kernel.debug')) {
throw $e;
}
throw new \SoapFault('Receiver', $e->getMessage());
}
$this->setResponse($response);