【发布时间】:2015-08-18 10:11:24
【问题描述】:
我正在尝试编写自己的 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 在那里并且 data 在那里。对 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>
请指教。
【问题讨论】:
-
如果双方都独立尝试会发生什么?首先是 getCarMakes() 函数查看它应该返回的结果,然后是链接到单元测试 getCarMakes() 函数的 WSDL,它返回非空的固定数据。
标签: php mysql web-services soap wsdl