为什么在文档/文字样式中使用WSDL的SoapClient返回带有额外键元素的数组?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么在文档/文字样式中使用WSDL的SoapClient返回带有额外键元素的数组?相关的知识,希望对你有一定的参考价值。
我们正在将RPC /编码的web服务转换为document / literal / wrapped。 WSDL(使用nusoap)已经被重写以使用新格式。
我像这样使用php SoapClient:
new SoapClient($wsdlUrl, array(
'cache_wsdl' => WSDL_CACHE_NONE,
'trace' => true,
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
));
相关的WSDL部分如下所示(应该遵循WS-I Basic Profile):
<xsd:complexType name="messages">
<xsd:sequence>
<xsd:element name="item" type="xsd:string" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="some_functionResponseType">
<xsd:all>
<xsd:element name="return" type="tns:messages" form="unqualified"/>
</xsd:all>
</xsd:complexType>
<message name="some_functionResponse">
<part name="parameters" element="tns:some_functionResponseType"/>
</message>
<operation name="some_function">
<input message="tns:some_functionRequest"/>
<output message="tns:some_functionResponse"/>
</operation>
当我提交请求时,XML响应是这样的:
<?xml version="1.0" encoding="utf-8"?>
<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>
<some_functionResponse xmlns="urn:toets_nl_wsdl">
<messages xmlns="">
<item>foo</item>
<item>bar</item>
</messages>
</some_functionResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
当我在PHP中转储结果对象时,它看起来像这样:
stdClass Object
(
[messages] => stdClass Object
(
[item] => Array // <-- here
(
[0] => foo
[1] => bar
)
)
)
为什么结果树中有一个额外的元素“item”?当我们仍在使用RPC / encoded时,这不存在。
有没有办法在处理响应时删除该元素?
您的WSDL明确指出存在一个具有无限次数的项目,其中包含字符串(也称为数组)。因此,PHP只会向您呈现WSDL中描述的结构,并由服务器返回。
我看不出有什么不妥。不要指望Soap与RPC相同只是因为它做同样的事情。如果您不想在那里使用item元素,请更改WSDL和服务 - 但这可能比将PHP客户端代码适合新数据结构更困难。
你甚至使用了SOAP_SINGLE_ELEMENT_ARRAYS,这是一件好事,可以避免检查元素是否真的是一个数组。
你完全确定它在WSDL定义中没有指定吗?我确定服务器不会添加额外的元素以获得乐趣:)
或者它可能是文档编码风格的结果。
在返回数组类型的内容时,item元素在SAP Web Services(我经常使用)中非常常见,但是,就像我上面写的那样,它在WSDL中明确指定。
您可能还会发现,当数组中只有一个元素项不是数组时,请在代码中使用
if(!is_array($messages->item)) {
$messages->item = array($messages->item);
}
以上是关于为什么在文档/文字样式中使用WSDL的SoapClient返回带有额外键元素的数组?的主要内容,如果未能解决你的问题,请参考以下文章
wsdl.exe 错误:无法从命名空间“...”导入绑定“...”
将 ColdFusion 生成的 WSDL Web 服务从 RPC 编码更改为文档文字会有啥影响?
WORD2010插入题注时如果加入章节号?总是提示“ 错误!文档中没有指定样式的文字。”