Nusoap更改返回名称

时间:2013-11-29 13:08:59

标签: php nusoap

我想将当前“返回”的标记更改为“结果”。像这样:

<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" 
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
  <ns1:AuthenticateResponse xmlns:ns1="http://tempuri.org">
     <***return***>
     <Result xsi:type="xsd:string">OK</Result>
     </***return***>
  </ns1:AuthenticateResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

(参见***

之间的值

这可能吗?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:0)

我已经通过更改nusoap.php文件(line 4143来修复此问题:

原:

$return_val = $this->serialize_val($this->methodreturn, 'return');

编辑代码:

$return_val = $this->serialize_val($this->methodreturn, 'result');

我敢打赌有更好的方法可以解决这个问题,但这对我来说很有用。