dpa89292 2015-06-29 11:45
浏览 49
已采纳

使用包含Document / literal的NuSoap PHP调用SOAP客户端

Im trying to make a SOAP call, but have to many problems.

Im using this:

$client = new nusoap_client('http://odigo.xxx.com/xxx/servlet/services/WebCallBack?wsdl'); 
$client -> setEndpoint('https://odigo2.xxx.com/xxx/servlet/services/WebCallBack.WebCallBackHttpSoap11Endpoint/'); 

$client->soap_defencoding = 'UTF-8';

error message:
$error = $client->getError();

if ($error) {
die("client construction error: {$error}
");
}

$param = array('skillKeyWord' => 'yyy',
             'phoneNumber' => '999999999',
             'user' => 'XXX',
             'password' => 'XXX',
            );
$result = $client->call('saveCallBack', array('parameters' => $param), '', '', false, true);

The IT department of the Client tell me, the request are wrong, because: "need to use Document/literal wrapped, not encoded" and "parameters are wrong encapsulated"

The correct call they send to us, is this example:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <saveCallBack xmlns ="http://odigo.xxx.com/2009/09/21/webcallback.xsd" xmlns:ns2="http://webcallback.ws.bean.model.odigo.xxx.com/xsd" xmlns:ns3="http://administration.bean.model.odigo.xxx.com/xsd">
         <webCallBack>
            <ns2:date>0</ns2:date>
            <ns2:phoneNumber>9999999</ns2:phoneNumber>
            <ns2:skillKeyWord>yyy</ns2:skillKeyWord>
         </webCallBack>
         <user>
            <ns3:login>XXX</ns3:login>
            <ns3:password>XXX</ns3:password>
         </user>
      </saveCallBack>
   </soap:Body>
</soap:Envelope>

I dont know how i can send this format call using nusoap, or using this XML to make a call using nusoap.

Any help its appreciated.

  • 写回答

1条回答 默认 最新

  • dongwei3712 2015-06-29 12:05
    关注

    Try using CURL. Code is shown below:

    $soap_body   = '<?xml version="1.0" encoding="utf-8"?>'.
                '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'.
                    '<soap:Body>'.
                        '<saveCallBack xmlns ="http://odigo.xxx.com/2009/09/21/webcallback.xsd" xmlns:ns2="http://webcallback.ws.bean.model.odigo.xxx.com/xsd" xmlns:ns3="http://administration.bean.model.odigo.xxx.com/xsd">'.
                            '<webCallBack>'.
                                '<ns2:date>0</ns2:date>'.
                                '<ns2:phoneNumber>9999999</ns2:phoneNumber>'.
                                '<ns2:skillKeyWord>yyy</ns2:skillKeyWord>'.
                            '</webCallBack>'.
                            '<user>'.
                                '<ns3:login>XXX</ns3:login>'.
                                '<ns3:password>XXX</ns3:password>'.
                            '</user>'.
                        '</saveCallBack>'.
                    '</soap:Body>'.
                '</soap:Envelope>'; 
    
    $headers = array
    ( 
       'Content-Type: text/xml; charset="utf-8"', 
       'Content-Length: '. strlen($soap_body), 
       'Accept: text/xml', 
       'Cache-Control: no-cache', 
       'Pragma: no-cache'
    );
    
    $ch = curl_init(); 
    
    curl_setopt($ch, CURLOPT_URL, 'http://odigo.xxx.com/xxx/servlet/services/WebCallBack?wsdl'); 
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $soap_body); 
    
    $result = curl_exec($ch);
    //do something useful with $result variable
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作