2016-12-02 88 views
0

我是新的处理肥皂API请求响应,我需要帮助来实现使用SMS网关API的SMS代码。 我使用PHP与通过以下短信网关API发送短信卷曲的要求就是我的代码发送短信到客户(S)肥皂客户端API整合PHP不起作用

<?php 
define("USERNAME","#username#"); 
define("PASSWORD","#password#"); 
$soapUrl = "soap_wsdl_url"; 

$xml_post_string = '<?xml version="1.0" encoding="UTF-8"?> 
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:templateSMS" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="urn:ElbaridTNS" xmlns:ns3="namespace" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
<SOAP-ENV:Header> 
<ns3:AuthHeader> 
      <username>USERNAME</username> 
      <password>PASSWORD</password> 
</ns3:AuthHeader> 
</SOAP-ENV:Header> 
<SOAP-ENV:Body> 
<ns1:templateSMS> 
<Sms xsi:type="ns2:Sms"><phoneNumber xsi:type="xsd:string">phoneNumber</phoneNumber> 
<message xsi:type="xsd:string">Hello User, this is test SMS message. We can successfully send SMS.</message> 
<unicodeMessage xsi:type="xsd:string">test SMS</unicodeMessage> 
<sms_type_id xsi:type="xsd:string">1</sms_type_id> 
<notify xsi:type="xsd:string">0</notify> 
<senderId xsi:type="xsd:string">SENDERID</senderId> 
<priority xsi:type="xsd:string">2</priority> 
<vbApp xsi:type="xsd:string">SoapRequest</vbApp> 
<vbIdTime xsi:type="xsd:string">20161130101112</vbIdTime> 
<destinationPort xsi:type="xsd:string">-1</destinationPort></Sms> 
</ns1:templateSMS> 
</SOAP-ENV:Body> 
</SOAP-ENV:Envelope>'; 

    $headers = array(
     "Content-type: text/xml;charset=\"utf-8\"", 
     "Accept: text/xml", 
     "Cache-Control: no-cache", 
     "Pragma: no-cache", 
     "SOAPAction: templateSMS", 
     "Content-length: ".strlen($xml_post_string), 
    ); 

    $url = $soapUrl; 

    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, $url); 
    curl_setopt($ch, CURLOPT_POST, 1); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
    //curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlRequest); 
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($ch, CURLOPT_VERBOSE, 0); 
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 

    $response = curl_exec($ch); 
    echo $response; 


    $response1 = str_replace("<soap:Body>","",$response); 
    $response2 = str_replace("</soap:Body>","",$response1); 

    $parser = simplexml_load_string($response2); 
    echo $parser['resultCode']; 
    echo "<pre>"; 
     print_r($parser); 
    echo "</pre>"; 

    curl_close($ch); 
?> 

我得到了$解析器[“resultCode为”] 这个响应“发送单播消息“。我不知道这个回应是什么意思。自从2天以来,我在这个问题上做了R & Ds,但没有取得任何成功。

任何人都可以帮助我解决上述问题吗?

+0

您的代码从不检查curl_exec是否返回false。如果它返回,你还应该调用[curl_error](http://php.net/manual/en/function.curl-error.php) – Dragos

+0

由于该消息位于从API接收的SOAP响应中,唯一能够澄清这些含义的技术支持来自相应的SOAP API服务。 – Dragos

+0

我已经联系支持团队,他们给了我一个应该在请求中传递的示例数据。 –

回答

0

支持团队给了我一个请求和响应示例代码,应该通过XML格式,下面是请求,响应样本结构

请求

<?xml version="1.0" encoding="UTF-8"?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:templateSMS" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="urn:ElbaridTNS" xmlns:ns3="namespace" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
<SOAP-ENV:Header> 
<ns3:AuthHeader> 
<username>username </username> 
<password>password</password> 
</ns3:AuthHeader> 
</SOAP-ENV:Header> 
<SOAP-ENV:Body> 
<ns1:templateSMS> 
<Sms xsi:type="ns2:Sms"><phoneNumber xsi:type="xsd:string">xxxxxx</phoneNumber> 
<message xsi:type="xsd:string">test SMS </message> 
<unicodeMessage xsi:type="xsd:string">test SMS</unicodeMessage> 
<sms_type_id xsi:type="xsd:string">1</sms_type_id> 
<notify xsi:type="xsd:string">0</notify> 
<senderId xsi:type="xsd:string">SenderId</senderId> 
<priority xsi:type="xsd:string">2</priority> 
<vbApp xsi:type="xsd:string">SoapRequest</vbApp> 
<vbIdTime xsi:type="xsd:string">20161130101112</vbIdTime> 
<destinationPort xsi:type="xsd:string">-1</destinationPort></Sms> 
</ns1:templateSMS> 
</SOAP-ENV:Body> 

响应:

<?xml version="1.0" encoding="UTF-8"?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:templateSMS" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> 
<SOAP-ENV:Body> 
<ns1:templateSMSResponse> 
<templateSMSResponse xsi:type="xsd:string">0#!#200#!#http://198.101.210.203/Soap/service/elbarid|http://212.98.137.180/Soap/service/elbarid#!#SenderId 
</templateSMSResponse> 
</ns1:templateSMSResponse> 
</SOAP-ENV:Body> 
</SOAP-ENV:Envelope>