ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

PHP SoapClient:动作不匹配

2019-06-30 11:16:47  阅读:168  来源: 互联网

标签:php soap soap-client


我试图使用PHP SoapClient扩展与外部SOAP服务器进行通信.

这是我的代码:

$this->_client = new SoapClient(SOAP_TAGGING_URL, array(
    'trace' => 1, 
    'soap_version' => SOAP_1_2, 
    'cache_wsdl' => WSDL_CACHE_NONE, 
    'exceptions' => true, 
    'uri' => SOAP_URI, 
)); 
try { 
    $actionHdr = array(); 
    $actionHdr[] = new SoapHeader(SOAP_TAGGING_URL, 'Action', 'GetMessagesByTagsByGroup'); 
    $this->_client->__setSoapHeaders($actionHdr);
    $info = $this->_client->GetMessagesByTagsByGroup( 
        new SoapParam($this->params['mPID'], 'ParentMessageID'), 
        new SoapParam($gid, 'GroupId'), 
        new SoapParam(REQUEST_TOKEN, 'RequestToken'), 
        new SoapParam(ACCESS_TOKEN, 'AccessToken'), 
        new SoapParam(ACCESS_TOKEN_SECRET, 'AccessTokenSecret') 
    );  
} catch (SoapFault $fault) { 
    print("\n<br/>SOAP server returned the following ERROR: ".$fault->faultcode."-".$fault->faultstring); 
}

echo "\n<br/>SOAP request: ". htmlentities($this->_client->__getLastRequest());
echo "\n<br/>SOAP response: ". htmlentities($this->_client->__getLastResponse());

这是我得到的响应(格式化添加):

    SOAP server returned the following ERROR: s:Sender-The SOAP action specified on the message, '', does not match the HTTP SOAP Action,     'http://tempuri.org/ITagging/GetMessagesByTagsByGroup'. 
SOAP request: 
<?xml version="1.0" encoding="UTF-8"?> 
<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://tempuri.org/" xmlns:ns2="https://mywebserver.com/myWSDL.svc/ws?wsdl">
    <env:Header>
        <ns2:Action>GetMessagesByTagsByGroup</ns2:Action>
    </env:Header>
    <env:Body>
        <ns1:GetMessagesByTagsByGroup/>
            <GroupId>2178</GroupId>
            <RequestToken>odwedwo09i0jACqbbjsw6KnlCA=</RequestToken>        
            <AccessToken>OlVbHurPJrNrEFR54Y0hV9kI/TZs=</AccessToken>
            <AccessTokenSecret>js1kerfe453FLuaXpL 892DY o=</AccessTokenSecret>
    </env:Body>
</env:Envelope> 
SOAP response: 
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
<s:Header>
    <a:Action s:mustUnderstand="1">http://www.w3.org/2005/08/addressing/fault</a:Action>    
</s:Header>
    <s:Body>
        <s:Fault>
            <s:Code>
                <s:Value>s:Sender</s:Value>
                <s:Subcode>
                    <s:Value>a:ActionMismatch</s:Value>
                </s:Subcode>
            </s:Code>
            <s:Reason>
                <s:Text xml:lang="en-US">The SOAP action specified on the message, '', does not match the HTTP SOAP Action, 'http://tempuri.org/ITagging/GetMessagesByTagsByGroup'. </s:Text>
            </s:Reason>
            <s:Detail>
                <a:ProblemHeaderQName>a:Action</a:ProblemHeaderQName>
            </s:Detail>
        </s:Fault>
    </s:Body>
</s:Envelope>

我以为我在标题中添加了’Action’参数,但显然不是放置它的地方.或者我做错了什么?

不幸的是我无法尝试NuSoap,因为我无法控制服务器.

谢谢,

解决方法:

这意味着您不仅必须指定HTTP标头SOAPAction:“http://www.bla.com:MyAction”

但您还需要在SOAP Envelope中指定标头:
检查这些链接以获取一些参考:
SOAP ACTION

标签:php,soap,soap-client
来源: https://codeday.me/bug/20190630/1335899.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有