0

この Web サービス http:// 115. 186. 182.11/csws/Service.asmx?op=SendSMS を次の PHP コードで呼び出そうとしていますが、スクリプトでエラー mate: サーバーが要求を処理できませんでしたという例外が発生します。---> オブジェクト参照がオブジェクトのインスタンスに設定されていません。

これに関するあなたの助けに非常に感謝します。

try     {       

$client = new SoapClient("http://115.186.182.11/csws/Service.asmx?wsdl"); 

$method = 'SendSMS';

$params = array(
new SoapParam('xxxxx', 'Src_nbr'),
new SoapParam('xxxxxx', 'Password'),
new SoapParam('xxxxx', 'Dst_nbr'),
new SoapParam('xxxxx', 'Mask'),
new SoapParam('Message is test message', 'Message')
);

$result = $client->__call($method,$params);

}
catch(SoapFault $e){
echo "Error mate in Script: " . $e->getMessage();
}

echo "<pre>";
var_dump($result);
echo "</pre>";

$xmlobj = simplexml_load_string($result);
print_r($xmlobj);

以下は仕様です...

POST /csws/Service.asmx HTTP/1.1
Host: 115.186.182.11
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/SendBulkSMS"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendBulkSMS xmlns="http://tempuri.org/">
      <Src_nbr>string</Src_nbr>
      <Password>string</Password>
      <Dst_nbr>xmlxml</Dst_nbr>
      <Mask>string</Mask>
      <Message>string</Message>
    </SendBulkSMS>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendBulkSMSResponse xmlns="http://tempuri.org/">
      <SendBulkSMSResult>
        <string>string</string>
        <string>string</string>
      </SendBulkSMSResult>
    </SendBulkSMSResponse>
  </soap:Body>
</soap:Envelope>
4

1 に答える 1