dongpu5600 2018-11-08 19:57
浏览 78
已采纳

PHP - 如何在SoapClient中设置页脚

With PHP, I need to send a SOAP request with a parameter (Hash) in the footer. I'm using SoapClient but I can not figure out how to do this, neither in internet searches, nor in documentation.

This is the envelope I used in the SoapUI tool to test:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:abc="" xmlns:abc1="" xmlns:abc2="">
   <soapenv:Header/>
   <soapenv:Body>
      <abc:Method>
         <!--Optional:-->
         <abc:request>
            <abc1:Header>
               <abc1:Username>Username</abc1:Username>
               <abc1:Password>Password</abc1:Password>
               <!--Optional:-->
               <abc1:PublicKeyUid></abc1:PublicKeyUid>
            </abc1:Header>
            <abc1:Body>
               <abc2:Id></abc2:Id>
            </abc1:Body>
            <abc1:Footer>
                <abc1:Hash></abc1:Hash>
            </abc1:Footer>
         </abc:request>
      </abc:Method>
   </soapenv:Body>
</soapenv:Envelope>

There is The SoapHeader class e the SoapClient::__setSoapHeaders method but I find nothing related to the footer.

I do not have access to the server and should follow this structure mentioned above.

What I need to know is how to send the HASH parameter that is inside the footer with SoapClient.

Thanks in advance for any help or suggestion.

  • 写回答

1条回答 默认 最新

  • dongyi5070 2018-12-09 14:48
    关注

    As IMSoP and axiac have commented, the footer (<abc1: Footer>) is just a sub-structure of the envelop body and not a standard XML envelop element. I had not realized this and so I did not find it in the documentation.

    So to send HASH to the requested structure, I need to pass a multidimensional array on the body element. The code looks like this:

    $arrParameters = [
        'request'=>[
            'Header'=>[
                'Username'=>$strUsername,
                'Password'=>$strPassword
            ],
            'Body'=>[
                ...
            ],
            'Footer'=>[
                'Hash'=>$strHash
            ]
        ]
    ];
    
    $SoapClient = new SoapClient(<WSDL URL>);
    
    $resp = $SoapClient->method($arrParameters);
    


    Thank you IMSoP and axiac!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退
  • ¥20 win系统的PYQT程序生成的数据如何放入云服务器阿里云window版?