gpt4 book ai didi

php - SOAP 服务通过 WSDL 返回空数组而不是数据库中的数据

转载 作者:可可西里 更新时间:2023-11-01 07:39:13 25 4
gpt4 key购买 nike

我正在尝试编写自己的 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);

它返回一个空数组,但是数据库和数据都在那里。对数据库的请求是正确的,我最初在非 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>

请指教。

最佳答案

至少没有对复杂类型的正确定义。下面是返回可用汽车品牌列表的基本实现(作为字符串数组)。如果返回格式不同,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();
}

关于php - SOAP 服务通过 WSDL 返回空数组而不是数据库中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32069512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com