added initial support for incoming mtom/xop message handling

This commit is contained in:
Christian Kerl
2010-10-08 16:58:14 +02:00
parent 8d3743d928
commit 4ed8d6813a
3 changed files with 151 additions and 4 deletions

View File

@ -78,7 +78,7 @@ class SoapKernel implements HttpKernelInterface
$this->soapRequest = $this->checkRequest($request);
ob_start();
$this->soapServer->handle($this->soapRequest->getRawContent());
$this->soapServer->handle($this->soapRequest->getSoapMessage());
$soapResponseContent = ob_get_clean();
$this->soapResponse->setContent($soapResponseContent);