- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试编写自己的 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/
为什么 WSDL 引入 wsdl:message?和消息部分? 与在操作参数(输入、输出、故障)中直接使用 XSD 相比,他们可以带来什么优势? 它们(带有 wsdl 消息部分的 wsdl 消息)如何
这个问题看起来很简单,但我找不到合适的地方在 WSDL 文档中设置其定义的版本。 目标是能够很容易地看到它何时过时,以及我将来何时更新它。 我要把它设为 1.0。如果将来我向它添加新操作,我将其设置为
在 WSDL 文件中,函数可以返回类型或元素。到目前为止,我仅使用自定义类型作为结果。但是,我想知道什么时候Element应该比Type更合适?它们有什么区别? 有什么区别吗 和
我在 web sphere 服务器上部署了一个 jax-ws web 服务,当我尝试使用 url 在浏览器中访问 wsdl 时 "Http://localhost:7001/HelloWorldSer
我在使用 SVCUtil 为 WCF 生成代理时遇到错误。错误是 Attempting to download metadata from 'net.pipe://localhost/WebServi
我正在遵循 WSDL-first(由我们的客户提供)方法来开发 WCF 服务,但是从我的 wcf 服务生成的 WSDL 与我们的客户提供给我的 WSDL 略有不同,并且由于这种不匹配,客户在调用我的服
我有嵌套的 WSDL,我想将其扁平化。 wsdl 导入 xsd 文件,这些文件又包含其他文件等。我喜欢把整个东西压平成一个文件,以便将它提供给一个无法执行导入/包含的工具。有没有我可以使用的简单工具(
我正在尝试使用一些统计信息进行 WSDL 解析(使用 c#.net)。我的统计数据取决于 WSDL 中的文档标签。我想知道可以包含文档标签的 wsdl 标签列表来检查它们。 我试图阅读 WS-I 基本
我有一个 WSDL 文件。我想将 wsdl 文件转换为 Web 服务类文件。 是否可以?如果是,请向我详细解释。 最佳答案 在解决方案资源管理器中右键单击 您的项目并转到“添加服务 引用...” 按窗
我正在使用 Axis 为示例 WebService 建模。我现在正在做的是试图了解自动化 wsdl 和代码生成的局限性。 现在对于一些服务器端代码: 这是示例 Web 服务的框架: public cl
我有一个 Silverlight 应用程序,它通过 WCF 服务与服务器端的 ADO.Net 数据实体通信。实际上,我正在使用多个 WCF 服务与三个不同的数据 ADO.Net 数据实体进行通信。我最
是否有使用服务端点地址获取服务 WSDL 的通用方法。我知道这可以通过将 ?wsdl 附加到 Axis2 服务来完成。但是这个属性是否也适用于其他 Web 服务容器? 最佳答案 ?wsdl 适用于所有
例如使用 png归档其 mime-type是“图像/png”;那么 wsdl 的 MIME 类型是什么?文件 ? 最佳答案 text/xml - WSDL 是基于 XML 格式的服务描述。 您可以在“
我的服务是从一个 wsdl 文件中选取的。但是发布的服务 wso2 是 chenged。如果我希望 wso2 像我的 wsdl 文件一样发布。如何设置?例如,我的 wsdl 文件是:
我需要在给定 XSD 文件的情况下生成 WSDL 文件。我该怎么做呢?我可以在VS2005中这样做吗?最简单的方法是什么? 最佳答案 你不能 - XSD 描述数据方面,例如Web 服务的功能 - WS
有什么方法可以从 wsdl 生成 xsd 吗?任何链接或工具也可以。最简单的方法是什么? 最佳答案 您可以使用SoapUI:http://www.soapui.org/这是一个通常很方便的程序。创建一
我启动我的 azure 应用程序,浏览到 svc 文件 http://127.0.0.1:82/transaction.svc ,我得到了通常的结果: You have created a servi
我使用动态端点 wsdl(通过 http 的 wsdl)来生成客户端。这工作得很好。 是否可以从动态wsdl的http链接生成静态wsdl? 问题是动态 wsdl 只能从一台机器访问。 我想在另一台电
我想知道是否可以将请求从一个 wsdl 发送到另一个 wsdl。如果是,那我该怎么做? 流程将是: 我想使用 switchyard 公开一个 wsdl,比如 wsdl-1,它可能有 100 个参数,带
我按照定义的步骤使用 Spring Boot 创建了一个网络服务 here当我尝试下载 wsdl 时,我不得不在 url 中使用 .wsdl 。但是,当我使用 ?wsdl 时,不会下载 wsdl。当我
我是一名优秀的程序员,十分优秀!