我不确定这是不是php bug(糟糕的实现)还是我的错误(对SOAP协议/ SoapServer的理解不好,因为这是我第一次使用SoapServer)
我注意到如果有两个或多个具有相同wsdl:part
的操作(即使wsdl:message
,操作和soapAction不同),SoapServer
将始终调用第一个功能。在这个例子中,我有两个函数multiply2
和multiply4
都有num
(int)作为输入参数。今天早些时候,如果我更改了部件名称(service1.wsdl),则功能会正确映射。
虽然,我不介意使用不同的名称,它看起来像一个bug。我错过了什么或者我应该打开一个错误吗?
这是我创作的一个简单示例:
非常简单的php类
<?php
class Multi
{
function multiply2($num) { return ($num * 2 ); }
function multiply4($num){ return ($num * 4 ); }
}
?>
略微更改了SoapServer(添加了日志记录 - adapted from this post)但是当我使用普通的SoapServer时会出现问题:
$server = new overloadedSoapServer("service.wsdl", array('soap_version' => SOAP_1_2,'encoding' => SOAP_ENCODED));
$server->setClass("multi");
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$server->handle();
}
这是客户端代码:
ini_set("soap.wsdl_cache_enabled", "0");
$client = new SoapClient('service.wsdl');
$client1 = new SoapClient('service1.wsdl');
echo "<pre>\nFrom service.wsdl:";
echo "\n".$client->multiply2(10);
echo "\n".$client->multiply4(10);
echo "</pre>";
echo "<pre>\nFrom service1.wsdl:";
echo "\n".$client1->multiply2(10);
echo "\n".$client1->multiply4(10);
echo "</pre>";
service.wsdl
和service1.wsdl
基本上是同一个文件,但有两个例外:
service.wsdl
指向http://tests.simsimy.info/web/service.php
和service1.php
到http://tests.simsimy.info/web/service1.php
每个端点使用适当的wsdl加载SoapServer
)service.wsdl
multiply2Request
和multiply4Request
的部分名称为num
,而service1.wsdl
的名称则不同(num2
和num4
)
醇>
这是service.wsdl的完整wsdl
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://tests.simsimy.info/web/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="service"
targetNamespace="http://tests.simsimy.info/web/">
<wsdl:message name="multiply2Request">
<wsdl:part name="num" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply2Response">
<wsdl:part name="res" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply4Request">
<wsdl:part name="num" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply4Response">
<wsdl:part name="res" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:portType name="dd">
<wsdl:operation name="multiply2">
<wsdl:input message="tns:multiply2Request"></wsdl:input>
<wsdl:output message="tns:multiply2Response"></wsdl:output>
</wsdl:operation>
<wsdl:operation name="multiply4">
<wsdl:input message="tns:multiply4Request"></wsdl:input>
<wsdl:output message="tns:multiply4Response"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="serviceSOAP" type="tns:dd">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="multiply2">
<soap:operation soapAction="http://tests.simsimy.info/web/multiply2" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="multiply4">
<soap:operation soapAction="http://tests.simsimy.info/web/multiply4" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="multiply_service">
<wsdl:port binding="tns:serviceSOAP" name="serviceSOAP">
<soap:address location="http://tests.simsimy.info/web/service.php" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
service1.wsdl
中的更改部分:
<wsdl:message name="multiply2Request">
<wsdl:part name="num2" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply2Response">
<wsdl:part name="res" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply4Request">
<wsdl:part name="num4" type="xsd:int"></wsdl:part>
</wsdl:message>
<wsdl:message name="multiply4Response">
<wsdl:part name="res" type="xsd:int"></wsdl:part>
</wsdl:message>
当我运行客户端代码时,我得到以下输出:
From service.wsdl:
20
20
From service1.wsdl:
20
40
答案 0 :(得分:2)
您可以将wsdl中的绑定样式从“document”更改为“rpc”。
首先我认为这是一个缓存问题,因为上面发布的服务器代码不包含禁用缓存的ini_set()。但这不是缓存问题。
追踪了http流量。客户端似乎正常工作,这是一个SoapServer问题。 (就像你提到的那样)..进一步调查......
错误报告已经filed - 虽然目前还不清楚它是否是一个错误。
错误报告中也提到了变通方法。如果可以,您可以将绑定样式更改为rpc:
更改
<soap:binding style="document"
到
<soap:binding style="rpc"
此解决方法适合我。你会发现一篇关于绑定样式如何工作的非常有趣的文章here。这可以帮助您确定rpc绑定样式是否适合您。