5

我们正在将 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
                )

        )

)

为什么结果树中有一个额外的元素“项目”?当我们还在使用 RPC/encoded 时,这还不存在。

有没有办法在处理响应时删除该元素?

4

2 回答 2

4

您的 WSDL 明确指出,有一个项目的出现次数不受限制,其中包含字符串(也称为数组)。所以 PHP 只是向您呈现 WSDL 中描述的结构,并由服务器返回。

我看不出有什么问题。不要仅仅因为 Soap 的作用相同,就期望 Soap 与 RPC 相同。如果您不想要该 item 元素,请更改 WSDL 和服务 - 但这可能比将 PHP 客户端代码适合新数据结构更困难。

您甚至使用了 SOAP_SINGLE_ELEMENT_ARRAYS,这是避免检查元素是否真的是数组的好方法。

于 2013-07-29T19:40:30.890 回答
0

您完全确定它没有在某处的 WSDL 定义中指定吗?我确定服务器不会为了好玩而添加额外的元素:)

或者这可能是文档编码风格的结果。

当返回数组类型的内容时,item元素在 SAP Webservices(我经常使用)中非常常见,但就像我上面写的那样,它在 WSDL 中明确指定。

您可能还会发现,当数组只有一个元素时,项目将不是数组,因此请在您的代码中使用

if(!is_array($messages->item)) {
    $messages->item = array($messages->item);
}
于 2013-07-29T13:19:32.340 回答