PHP soapClient enviar XML personalizado

Estoy tratando de hacer una solicitud SOAP usando la clase soapClient de PHP que es mi código:

$xmlstr = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://localhost:8090/mockCustomerManagement/types">
   <soapenv:Header>
      <typ:customerManagementHeader>
         <typ:userId>42</typ:userId>
         <typ:requestId>1500</typ:requestId>
         <typ:messageTimestamp>2013-09-25T14:31:21+00:00</typ:messageTimestamp>
      </typ:customerManagementHeader>
   </soapenv:Header>
   <soapenv:Body>
      <typ:getCustomerInfoData>
         <useremail>[email protected]</useremail>
      </typ:getCustomerInfoData>
   </soapenv:Body>
</soapenv:Envelope>
XML;

$wsdl = 'http://localhost:8090/mockCustomerManagementSoapHttpBinding?WSDL';
$client = new SoapClient($wsdl, array(
    'cache_wsdl'    => WSDL_CACHE_NONE, 
    'cache_ttl'     => 86400, 
    'trace'         => true,
    'exceptions'    => true,
));

$xmlVar = new SoapVar($xmlstr, XSD_ANYXML);
$client->getCustomerInfo($xmlstr);

Pero la solicitud me lanzó una excepción y cuando le pido al cliente la última solicitud, muestra un texto adicional al principio y al final de mi XML, como puede ver:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://localhost:8090/mockCustomerManagement/types">
<SOAP-ENV:Body>

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://localhost:8090/mockCustomerManagement/types">
   <soapenv:Header>
      <typ:customerManagementHeader>
         <typ:userId>42</typ:userId>
         <typ:requestId>1500</typ:requestId>
         <typ:messageTimestamp>2013-09-25T14:31:21+00:00</typ:messageTimestamp>
      </typ:customerManagementHeader>
   </soapenv:Header>
   <soapenv:Body>
      <typ:getCustomerInfoData>
         <useremail>[email protected]</useremail>
      </typ:getCustomerInfoData>
   </soapenv:Body>
</soapenv:Envelope>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

¿Hay alguna manera de eliminar / deshabilitar ese texto extra? En otras palabras, ¿hay una manera de enviar solo mi XML?

Respuestas a la pregunta(2)

Su respuesta a la pregunta