nusoap服务器的响应是否正常?
如果没有,我如何修复或删除<
和>
并将其设为<
和>
<?xml version="1.0" encoding="utf-8"?>
<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:get_stocksResponse xmlns:ns1="VSR"><return xsi:type="xsd:string"><facilitator>
<stock_response>
<product>
<productid>1072722</productid>
<voorraad>888040</voorraad>
</product>
<product>
<productid>1072724</productid>
<voorraad>888603</voorraad>
</product>
</stock_response>
</facilitator>
</return></ns1:get_stocksResponse></SOAP-ENV:Body></SOAP-ENV:Envelope></code>
这是我在服务器中的注册功能
$this->server->register('get_stocks', // method name
array('product' => 'xsd:int'), // input parameters
array('return' => 'xsd:string'), // output parameters
$this->_namespace, // namespace
'urn:'.$this->_namespace.'#get_stocks', // soapaction
'rpc', // style
'encoded', // use
'Get stocks of products' // documentation
);
这是我的回归功能
$xmlDoc = new DOMDocument('1.0', 'utf-8');
$xmlDoc->formatOutput = TRUE;
...etc
$nodes = $xmlDoc -> getElementsByTagName ('facilitator');
$node = $nodes -> item(0);
return $xmlDoc->saveXML($node);
答案 0 :(得分:1)
来自Nusoap use existing WSDL how to?
我发现了这个
var $methodreturnisliteralxml = false;
并在创建nusoap服务器时将其设置为true
$this->server->methodreturnisliteralxml = true;
答案 1 :(得分:0)
array('return' => 'xsd:string')
输出是字符串,而不是xml-structure。 XML中的字符串必须进行编码。如果要返回其他数据,则必须使用ComplexType
。看看这个问题:PHP Web Service NuSOAP complex type
示例:
$this->server->wsdl->addComplexType(/** definition **/);
$this->server->register('get_stocks', // method name
array('product' => 'xsd:int'), // input parameters
array('return' => 'tns:yourComplexType'), // output parameters
就像@butching所说,你也有一个编码不匹配,这很糟糕,但不是你问题的原因。