在服务器端使用 php 处理复杂类型的 wsdl
我正在使用 php 在服务器端编写服务。以下是我的 wsdl 请求和响应类型
<xsd:element name="testServiceRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="identifier" type="xsd:string"></xsd:element>
<xsd:element name="params" type="abc:Parameters"></xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="testServiceResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="response" type="abc:responseType"></xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="Parameter">
<xsd:sequence>
<xsd:element name="key" type="xsd:string"></xsd:element>
<xsd:element name="value" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Parameters">
<xsd:sequence>
<xsd:element name="param" type="abc:Parameter" maxOccurs="unbounded" minOccurs="0"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="responseType">
<xsd:sequence>
<xsd:element name="resultCode" type="xsd:string"></xsd:element>
<xsd:element name="resultDesc" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:complexType>
有人可以帮助我如何编写 php 函数来获取参数值以及如何编写该 copmlex 类型的返回值。
我的 php 函数看起来像
function testService($params) {
// how can I get the parameter values ????
return "";
// what should I return to compatible with return type ???
}
提前谢谢......
I am using php to write the service in server side. following is my wsdl request and response types
<xsd:element name="testServiceRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="identifier" type="xsd:string"></xsd:element>
<xsd:element name="params" type="abc:Parameters"></xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="testServiceResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="response" type="abc:responseType"></xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="Parameter">
<xsd:sequence>
<xsd:element name="key" type="xsd:string"></xsd:element>
<xsd:element name="value" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Parameters">
<xsd:sequence>
<xsd:element name="param" type="abc:Parameter" maxOccurs="unbounded" minOccurs="0"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="responseType">
<xsd:sequence>
<xsd:element name="resultCode" type="xsd:string"></xsd:element>
<xsd:element name="resultDesc" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:complexType>
Can somebody please help me how to write the php function to get the parameter values and how to write the return of that copmlex type.
My php function looks like
function testService($params) {
// how can I get the parameter values ????
return "";
// what should I return to compatible with return type ???
}
Thanks in advance....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然不是您正在寻找的答案。我认为您可能已经在 wsdl 中切换了参数和参数。我假设您想要多个参数的复数参数和单个参数的单数参数。目前你已经扭转了局面。
Although not the answer you're looking for. I think you may have switched Parameter and Parameters in your wsdl. I'm assuming you wanted the plural Parameter for multiple parameters and the singular for a single parameter. Currently you have that reversed.