SOAP服务通过WSDL而不是来自数据库

时间:2015-08-18 10:11:24

标签: php mysql web-services soap wsdl

我正在尝试编写自己的SOAP服务器并通过SoapClient(wsdl模式)调用方法。我在php中创建了方法,添加了一个自动生成的wsdl文件。我通过SoapClient发送请求,服务器应该使用Mysql并返回结果,但我总是得到空响应。我检查了MySQL中的日志,它们显示了应该返回数据的正确请求。

public function getCarMakes()
{
    $carMakesArr = array();
    $sql = "SELECT * FROM cars order by make";
    try
    {
        foreach($this->conn->query($sql) as $row)
        {
            $carMakesArr[] = array( $row[0], $row[1], $row[2]);
        }
    }
    catch(Exception $e)
    {
        echo $e->getMessage();
    }

        return $carMakesArr;
}

我的WSDL文件:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Generated by JAX-WS RI (http://jax-ws.java.net). RI's version is Metro/2.3.1-b419 (branches/2.3.1.x-7937; 2014-08-04T08:11:03+0000) JAXWS-RI/2.2.10-b140803.1500 JAXWS-API/2.2.11 JAXB-RI/2.2.10-b140802.1033 JAXB-API/2.2.12-b140109.1041 svn-revision#unknown. -->
<definitions targetNamespace="http://wsdl.example.org/" name="ServerWS" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:tns="http://wsdl.example.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata">
  <types>
    <xsd:schema>
      <xsd:import namespace="http://wsdl.example.org/" schemaLocation="ServerWS_schema1.xsd"/>
    </xsd:schema>
  </types>
  <message name="buyCar">
    <part name="parameters" element="tns:buyCar"/>
  </message>
  <message name="buyCarResponse">
    <part name="parameters" element="tns:buyCarResponse"/>
  </message>
  <message name="getCarMakes">
    <part name="parameters" element="tns:getCarMakes"/>
  </message>
  <message name="getCarMakesResponse">
    <part name="parameters" element="tns:getCarMakesResponse"/>
  </message>
  <message name="getCarDetailsById">
    <part name="parameters" element="tns:getCarDetailsById"/>
  </message>
  <message name="getCarDetailsByIdResponse">
    <part name="parameters" element="tns:getCarDetailsByIdResponse"/>
  </message>
  <message name="searchByParams">
    <part name="parameters" element="tns:searchByParams"/>
  </message>
  <message name="searchByParamsResponse">
    <part name="parameters" element="tns:searchByParamsResponse"/>
  </message>
  <portType name="ServerWS">
    <operation name="buyCar">
      <input wsam:Action="http://wsdl.example.org/ServerWS/buyCarRequest" message="tns:buyCar"/>
      <output wsam:Action="http://wsdl.example.org/ServerWS/buyCarResponse" message="tns:buyCarResponse"/>
    </operation>
    <operation name="getCarMakes">
      <input wsam:Action="http://wsdl.example.org/ServerWS/getCarMakesRequest" message="tns:getCarMakes"/>
      <output wsam:Action="http://wsdl.example.org/ServerWS/getCarMakesResponse" message="tns:getCarMakesResponse"/>
    </operation>
    <operation name="getCarDetailsById">
      <input wsam:Action="http://wsdl.example.org/ServerWS/getCarDetailsByIdRequest" message="tns:getCarDetailsById"/>
      <output wsam:Action="http://wsdl.example.org/ServerWS/getCarDetailsByIdResponse" message="tns:getCarDetailsByIdResponse"/>
    </operation>
    <operation name="searchByParams">
      <input wsam:Action="http://wsdl.example.org/ServerWS/searchByParamsRequest" message="tns:searchByParams"/>
      <output wsam:Action="http://wsdl.example.org/ServerWS/searchByParamsResponse" message="tns:searchByParamsResponse"/>
    </operation>
  </portType>
  <binding name="ServerWSPortBinding" type="tns:ServerWS">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
    <operation name="buyCar">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
    <operation name="getCarMakes">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
    <operation name="getCarDetailsById">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
    <operation name="searchByParams">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
  </binding>
  <service name="ServerWS">
    <port name="ServerWSPort" binding="tns:ServerWSPortBinding">
      <soap:address location="http://localhost/soap/server.php"/>
    </port>
  </service>
</definitions>

我的XML架构:

<xs:complexType name="getCarMakes">
    <xs:sequence>
      <xs:element name="id_array1" type="xs:string" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="getCarMakesResponse">
    <xs:sequence>
      <xs:element name="return" type="xs:string" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:schema>

我的SoapClient请求:

$client = new SoapClient('http://localhost/soap/ServerWS.wsdl',
                        array('cache_wsdl' => WSDL_CACHE_NONE, 
                              'trace' => 1,
                              'soap_version' => SOAP_1_2)
                             );

try
    {

        $arr = (array)$client->getCarMakes();

        echo "<b>First method:</b> <br>";

    }
    catch(SoapFault $e)
    {
        echo $e->getMessage();
    }
    echo $client->__getLastRequest();
    echo $client->__getLastResponse(); 
     var_dump($arr);

它返回一个空数组,但db就在那里,数据就在那里。对db的请求是正确的,我最初在非wsdl模式下创建服务器并且它运行正常。

我的要求:

<!--?xml version="1.0" encoding="UTF-8"?-->
<env:envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://wsdl.example.org/">
<env:body><ns1:getcarmakes></ns1:getcarmakes>
   </env:body></env:envelope>

回应,我得到:

  <env:envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://wsdl.example.org/">
    <env:body><ns1:getcarmakesresponse></ns1:getcarmakesresponse>
    </env:body>
  </env:envelope>

请告知。

2 个答案:

答案 0 :(得分:1)

至少没有复杂类型的正确定义。下面是基本实现,它返回可用汽车品牌列表(作为字符串数组)。如果返回格式不同,则应相应调整carMakesArray复杂类型的定义。

将以下文件放在同一级别上,并将所有这些文件中的your.host替换为可访问这些文件的实际基本URL。

ServerWS.wsdl

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions targetNamespace="http://your.host/"
             name="ServerWS"
             xmlns="http://schemas.xmlsoap.org/wsdl/"
             xmlns:tns="http://your.host/"
             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
             xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
             xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
>
    <types>
        <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://your.host/">
            <complexType name="carMakesArray">
                <complexContent>
                    <restriction base="soapenc:Array">
                        <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
                    </restriction>
                </complexContent>
            </complexType>

            <xsd:complexType name="getCarMakesResponse">
                <xsd:sequence>
                    <xsd:element name="return" type="tns:carMakesArray"/>
                </xsd:sequence>
            </xsd:complexType>        
        </xsd:schema>
    </types>

    <message name="getCarMakes" />
    <message name="getCarMakesResponse">
        <part name="parameters" element="tns:getCarMakesResponse"/>
    </message>

    <portType name="ServerWS">
        <operation name="getCarMakes">
            <input wsam:Action="http://your.host/ServerWS/getCarMakesRequest" message="tns:getCarMakes"/>
            <output wsam:Action="http://your.host/ServerWS/getCarMakesResponse" message="tns:getCarMakesResponse"/>
        </operation>
    </portType>

    <binding name="ServerWSPortBinding" type="tns:ServerWS">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <operation name="getCarMakes">
            <soap:operation soapAction=""/>
            <input>
                <soap:body use="literal"/>
            </input>
            <output>
                <soap:body use="literal"/>
            </output>
        </operation>
    </binding>

    <service name="ServerWS">
        <port name="ServerWSPort" binding="tns:ServerWSPortBinding">
            <soap:address location="http://your.host/soapServerTest.php"/>
        </port>
    </service>
</definitions>

soapServerTest.php

<?php
require 'CarService.php';

$soapServer = new \SoapServer('http://your.host/ServerWS.wsdl', ['cache_wsdl' => WSDL_CACHE_NONE]);
$soapServer->setClass('CarsService');
$soapServer->handle();

CarService.php

<?php
class CarsService
{
    /**
     * @return string[]
     */
    public function getCarMakes()
    {
        /** Here you may extract data from DB and return instead of hard-coded values */
        return ['BMW', 'Ford', 'Honda'];
    }
}

soapClientTest.php

<?php
$client = new SoapClient(
    'http://your.host/ServerWS.wsdl',
    array(
        'cache_wsdl' => WSDL_CACHE_NONE,
        'soap_version' => SOAP_1_2
    )
);
try {
    $makes = $client->getCarMakes();
    var_dump($makes);
} catch (SoapFault $e) {
    echo $e->getMessage();
}

答案 1 :(得分:0)

问题在于自动生成的WSDL:

  • 我找到了工作的WSDL。
  • 用我的复杂类型更新了它,瞧,它有效。