在服务器端使用 php 处理复杂类型的 wsdl

发布于 2024-10-26 07:18:52 字数 1808 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七婞 2024-11-02 07:18:52

虽然不是您正在寻找的答案。我认为您可能已经在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文