我正在使用带有 wsdl 的 php soapServer/soapClient 类创建一个 Web 服务。有一些服务应该返回项目列表。服务返回如下内容:
<SOAP-ENV:Envelope ...>
<SOAP-ENV:Body>
<ns1:getTransactionsResponse>
<return xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">result</key>
<value SOAP-ENC:arrayType="ns2:Map[65]" xsi:type="SOAP-ENC:Array">
<item xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">id</key>
<value xsi:type="xsd:int">283</value>
</item>
<item>
...
</item>
...
</item>
</item>
</return>
</ns1:getItemsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
但我需要按属性名称命名所有元素。所以是这样的:
<result>
<item>
<attr1>value1</attr1>
<attr2>value2</attr2>
....
</item>
<item>
...
</item>
</result>
返回数组的结构为:
'result' => array
0 => array
'attr1' => 'value1'
'attr2' => 'value2'
...
1 => array
...
...
编辑 我的 WSDL:
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:XYZ">
<xsd:complexType name="Properties">
<xsd:sequence>
<xsd:element name="attr1" type="xsd:int"/>
<xsd:element name="attr2" type="xsd:string"/>
...
</xsd:sequence>
</xsd:complexType>
<xsd:element name="transactionsResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="0" name="result" nillable="true" type="tns:Properties"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</types>
<message name="getTransactionsResponse">
<part name="parameters" type="tns:transactionsResponse" />
</message>
端口类型:
<operation name="getTransactions">
<input message="tns:getTransactionsRequest" />
<output message="tns:getransactionsResponse" />
</operation>
捆绑:
<operation name="getVirtualTransactions">
<soap:operation soapAction="urn:getTransactionsAction" />
<input>
<soap:body use="encoded" namespace="urn:XYZ" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:XYZ" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
我不知道,如果我在谷歌上搜索不好,但我找不到任何解决方案。所以我会很高兴有一些简单的例子,链接到教程或文档,wsdl 应该是什么样子。或者我必须改变我的阵列的孔结构?我正在寻找最佳实践,如何将响应准备为服务器端的项目数组及其 wsdl 定义。