在我的wsdl代码中,我得到一个整数,我想在数组中返回结果。 为什么在我的输入中我只有一个整数,我需要结果数组,因为在我的php函数中我想从客户端选择的整数中返回数据库中的信息。
示例,我的客户端发送1,在我的php中我从DB中的“1”获取信息作为他的“ID(int)”,“Name(string)”,“Number1(int)”,“Number2(int) “,”日期和实际客户需求的时间«YYYY-MM-DD hh:mm:hh»(??)“
我怎么能这样做?
谢谢,
这是我的实际wsdl,输入一个整数并输出一个整数:
<message name='getResultRequest'>
<part name='numeropark' type='xsd:int'/>
</message>
<message name='getResultResponse'>
<part name='result' type='xsd:string'/>
</message>
<portType name='getResultPortType'>
<operation name='getResult'>
<input message='tns:getResultRequest'/>
<output message='tns:getResultResponse'/>
</operation>
</portType>
<binding name='getResultBinding' type='tns:getResultPortType'>
<soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
<operation name='getResult'>
<soap:operation soapAction='urn:xmethods-delayed-quotes#getResult'/>
<input>
<soap:body use='encoded' namespace='urn:xmethods-delayed-calcul'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</input>
<output>
<soap:body use='encoded' namespace='urn:xmethods-delayed-calcul'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</output>
</operation>
</binding>
<service name='getResultService'>
<port name='getResultPort' binding='getResultBinding'>
<soap:address location='http://XXX.XXXX.com/soap/soap-server.php'/>
</port>
</service>
答案 0 :(得分:6)
要返回数组,您应该定义complexType。例如,如果要返回字符串数组,则WSDL应包含以下部分:
<wsdl:types>
<xsd:schema targetNamespace="http://schema.example.com">
<xsd:complexType name="resultArray">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:string[]" />
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<message name='getResultRequest'>
<part name='numeropark' type='xsd:int'/>
</message>
<message name='getResultResponse'>
<part name='result' type='tns:resultArray'/>
</message>
我建议您使用任何WSDL生成器来创建描述文件。