php-soap服务器返回纯响应


php soap server return plain response

实际上,我创建了一个Soap Proxy,在其中我获得了客户端请求,并且我需要将请求进一步发布到另一个Soap服务器(带有c_url)。

成功获得响应(作为带有<SOAP-ENV和所有其他内容的xml)。

问题是,在我的SOAP代理中,我想准确地返回响应,如果我的服务器正在返回xml,那么SOAP服务器实际上会返回xml文件包装

<SOAP-ENV:Envelope ...>
   <SOAP-ENV:Body>
      <ns1:loginResponse>
        my xml that already contains <soap:Envelope, <soap:Body> and <namesp1:loginResponse>
      </ns1:loginResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

问题是:我如何让soap服务器返回我想要的响应,而不使用soap信封和其他东西

谢谢。

更新:

我的soap服务器:

$server = new SoapServer($myOwnWsdlPath);
$this->load->library('SoapProxy');
$server->setClass('SoapProxy', $params );
$server->handle();

我的肥皂Porxy与c_url:

public function __call($actionName, $inputArgs)
{
//some logic
$target = ...
$url = ..
$soapBody =..
$headers = ..
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $soapBody); // the SOAP request
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch); //soap xml response
curl_close($ch);
    file_put_contents('/tmp/SoapCurl.txt', var_export($response, true));
return $response;
}

/tmp/SoapColl.txt的响应是正确的:

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope ...>
    <soap:Body>
        <namesp1:loginResponse>
            <session_id xsi:type="xsd:string">data</session_id>
        </namesp1:loginResponse>
    </soap:Body>
</soap:Envelope>

我的soap服务器响应错误:

<SOAP-ENV:Envelope ...>
   <SOAP-ENV:Body>
      <ns1:loginResponse>
         <soap:Envelope ...>
            <soap:Body>
               <namesp1:loginResponse>
                  <session_id xsi:type="xsd:string">correct data</session_id>
               </namesp1:loginResponse>
            </soap:Body>
         </soap:Envelope>
      </ns1:loginResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我发现的修复方法是扩展SoapServer 的"handle"功能

丢弃SoapServer的输出(使用ob_end_clean),并将其替换为我的数据

class MySoapServer extends SoapServer
{
    public function handle($soap_request = null)
    {
        parent::handle();
        ob_end_clean();
        ob_start();
        echo $_SESSION['data'];
    }
}