我想将当前“返回”的标记更改为“结果”。像这样:
<?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>
(参见***
)
这可能吗?如果是这样,怎么样?
答案 0 :(得分:0)
我已经通过更改nusoap.php文件(line 4143
来修复此问题:
原:
$return_val = $this->serialize_val($this->methodreturn, 'return');
编辑代码:
$return_val = $this->serialize_val($this->methodreturn, 'result');
我敢打赌有更好的方法可以解决这个问题,但这对我来说很有用。