我有一个非常简单的Web服务,它返回一个字符串(硬编码)。解析SOAP有效负载时,我一直收到错误:保留的XML名称。
我可以查看WSDL没问题(防火墙内部/后面,所以没有提供的链接)。
这是调用我的方法后NuSOAP客户端的部分转储:
public 'request' => string 'POST myinternalhost.ca/ws.php HTTP/1.0
Host: myinternalhost.ca:443
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: ""
Content-Length: 510
<?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="htt'... (length=716)
public 'response' => string 'HTTP/1.1 200 OK
Date: Tue, 19 Jun 2012 18:43:10 GMT
Server: Apache/2.0.59 (Win32) DAV/2 mod_ssl/2.0.59 OpenSSL/0.9.8e mod_auth_sspi/1.0.4 PHP/5.2.3
X-Powered-By: PHP/5.2.3
X-SOAP-Server: NuSOAP/0.7.3 (1.114)
Content-Length: 470
Connection: close
Content-Type: text/xml; charset=ISO-8859-1
<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope 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-i'... (length=769)
public 'responseData' => string ' <?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope 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:vms_ws_list_filesResponse xmlns:ns1="http://tempuri.org"><return xsi:type="xsd:string">SomeText</return></ns1:vms_ws_list_filesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>' (length=470)
public 'error_str' => string 'XML error parsing SOAP payload on line 1: Reserved XML Name' (length=59)
在SOAP正文中,您可以看到“SomeText”,它是从我的Web服务返回的仅包含一种方法的硬编码内容:
$server->register('vms_ws_list_files',
array('password' => 'xsd:string'), // Password check
array('return' => 'xsd:string'), // Output parameters
$ns, // namespace
$ns . '#vms_ws_list_files', // soapaction
'rpc', // style
'encoded', // use
'Get list of files on disk' // documentation
);
...
function vms_ws_list_files($password){
global $site;
// Check password
if ($password != 'myHardCodedPwdForTesting') {
return new soap_fault('Wrong password!', '', '');
}
$out = "SomeText";
return $out;
}
在我的情况下,端口443没有受到保护,因为它是内部/测试。
答案 0 :(得分:6)
删除<?xml
和then it works之前的空格。如果你不能,也许你可以在解释之前将nusoap类更改/扩展到trim
响应。额外的空白很可能来自<?php
&amp;之外的一些偶然空白。 ?>
代码。
答案 1 :(得分:5)
在nusoap.php中添加以下行:
$ this-&gt; responseData = trim($ this-&gt; responseData);
在此之前:
返回$ this-&gt; parseResponse($ http-&gt; incoming_headers,trim($ this-&gt; responseData));
解决了我同样的问题
答案 2 :(得分:0)
在我的代码中,XML格式很差,因为在葡萄牙语中,BR有非常特殊的字符,引号,没有正确关闭标签。在代码的最后显示返回,一个XML,在此站点进行检查:http://www.xmlvalidation.com/ 然后他又回去工作了。