diff --git a/src/BeSimple/SoapBundle/Controller/SoapWebServiceController.php b/src/BeSimple/SoapBundle/Controller/SoapWebServiceController.php
index 24d2ba8..b85b9db 100644
--- a/src/BeSimple/SoapBundle/Controller/SoapWebServiceController.php
+++ b/src/BeSimple/SoapBundle/Controller/SoapWebServiceController.php
@@ -17,12 +17,12 @@ use BeSimple\SoapBundle\Soap\SoapRequest;
use BeSimple\SoapBundle\Soap\SoapResponse;
use BeSimple\SoapBundle\WebServiceContext;
use BeSimple\SoapServer\SoapServerBuilder;
-use Symfony\Component\Debug\Exception\FlattenException;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
+use Symfony\Component\Debug\Exception\FlattenException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
@@ -153,17 +153,17 @@ class SoapWebServiceController implements ContainerAwareInterface
->build()
;
-// ob_start();
-// $server->handle(
-// ''.
-// ''.
-// ''.
-// ''.
-// ''.
-// ''
-// );
-//
-// return new Response(ob_get_clean());
+ ob_start();
+ $server->handle(
+ ''.
+ ''.
+ ''.
+ ''.
+ ''.
+ ''
+ );
+
+ return new Response(ob_get_clean());
}
/**