PHP soap客户端+得到空响应
Posted
技术标签:
【中文标题】PHP soap客户端+得到空响应【英文标题】:Php soap client + getting null response 【发布时间】:2015-02-25 16:44:13 【问题描述】:我正在尝试从 php 客户端调用 wcf ws
WSDL https://ws-web.test.nhn.no/v1/AR?wsdl
$url = 'https://ws-web.test.nhn.no/v1/AR?wsdl';
$params = array('login' => '*****',
'password' => '######',
'soap_version' => SOAP_1_2,
'trace' => TRUE);
$client = new SoapClient($url, $params);
var_dump($client->__soapCall("Ping"));
使用上面的代码,我总是收到null
响应,我无法从wsdl
调用其他函数
如果我尝试使用另一种语法,有时我会收到 action mismatch error
并且我还会在 Soap UI 中收到 null
响应。
【问题讨论】:
我认为参数无效。如果没有设置登录名和密码,是否可以检查是否收到空响应? @PeterDarmis m 获得客户端变量的成功响应,所以我认为直到一切顺利:( 任何人都可以详细说明如何从 wsdl 预测变量名称和函数 我认为我必须将身份验证方法从 WS-Security 更改为基本身份验证方法,任何知道如何在 php soap 中执行此操作的人? 你应该看看这个php.net/manual/fr/soapclient.soapclient.php#114976 【参考方案1】:基于 WSDL,Ping 函数有一个输入消息。
<wsdl:operation name="Ping">
<wsdl:input wsam:Action="http://register.nhn.no/CommunicationParty/ICommunicationPartyService/Ping" message="tns:ICommunicationPartyService_Ping_InputMessage"/>
<wsdl:output wsam:Action="http://register.nhn.no/CommunicationParty/ICommunicationPartyService/PingResponse" message="tns:ICommunicationPartyService_Ping_OutputMessage"/>
</wsdl:operation>
输入消息由此处定义的参数组成...
<wsdl:message name="ICommunicationPartyService_Ping_InputMessage">
<wsdl:part name="parameters" element="tns:Ping"/>
</wsdl:message>
最后,Ping 对象看起来没有任何属性。很奇怪。
<xs:element name="Ping">
<xs:complexType>
<xs:sequence/>
</xs:complexType>
</xs:element>
所以试试这个。
$pingObj = new stdClass();
$client->__soapCall("Ping", [$pingObj]);
【讨论】:
以上是关于PHP soap客户端+得到空响应的主要内容,如果未能解决你的问题,请参考以下文章