SOAP のことを使おうとしているのですが、SOAP がまったくわかりません。ネイティブ PHP クラスを使用していますが、常に「処理中に障害が発生しました」という sae エラーが発生します。この説明: 「java.lang.NullPointerException」。
私が行う電話は次のように始まります。
$client = new SoapClient('http://api.notificationmessaging.com/NMSOAP/NotificationService?wsdl', array( 'trace' => 1, 'exceptions' => 0 ) );
次に、パラメータは次のようになります(ダミーデータで変更)
$email = 'john.smith@example.com';
$encrypt = 'AAAAAAAAAAAAAAAAAAAAAAAAAAA';
$notification_id = 123456789;
$random = 'BBBBBBBBBBBB';
$senddate = '2013-09-09T00:00:00';
$synchrotype = 'NOTHING';
$uidkey = 'EMAIL';
$content = array();
$content[] = array(
2 => 'TEST'
);
$dyn = array();
$dyn[] = array(
'FIRSTNAME' => 'John'
);
$dyn[] = array(
'LASTNAME' => 'Smith'
);
$params = array(
'email' => $email,
'encrypt' => $encrypt,
'notificationId' => $notification_id,
'random' => $random,
'senddate' => $senddate,
'synchrotype' => $synchrotype,
'uidkey' => $uidkey,
'content' => $content,
'dyn' => $dyn
);
次に、次のようにリクエストを実行します。
$res = $client->__soapCall( 'sendObject', array( $email, $encrypt, $notification_id, $random, $senddate, $synchrotype, $uidkey, $content, $dyn ) );
どこから始めればよいかわかりません。リクエストを実行する方法をいくつか試しましたが、うまくいきません。
PHP でいくつかの REST インターフェイスを使用して成功しましたが、SOAP は私には意味がありません。私は基本的なチュートリアルを読みましたが、特に私の場合は明らかに適用できないため、まだ賢明ではありません。
環境が働く
おそらく次のように尋ねるでしょう: はい、このリクエストは有効なレスポンスを返すため、SOAP はサーバー上で動作しています:
$requestParams = array(
'CityName' => 'Berlin',
'CountryName' => 'Germany'
);
$client = new SoapClient( 'http://www.webservicex.net/globalweather.asmx?WSDL' );
$response = $client->GetWeather( $requestParams );
print_r( $response );
これは私に次のようなものを与えます:
<CurrentWeather>
<Location>Berlin-Tegel, Germany (EDDT) 52-34N 013-19E 37M</Location>
<Time>Sep 10, 2013 - 09:20 AM EDT / 2013.09.10 1320 UTC</Time>
<Wind> from the SW (230 degrees) at 9 MPH (8 KT) (direction variable):0</Wind>
<Visibility> 4 mile(s):0</Visibility>
<SkyConditions> mostly cloudy</SkyConditions>
<Temperature> 59 F (15 C)</Temperature>
<DewPoint> 55 F (13 C)</DewPoint>
<RelativeHumidity> 87%</RelativeHumidity>
<Pressure> 29.85 in. Hg (1011 hPa)</Pressure>
<Status>Success</Status>
</CurrentWeather>
それを知ってとてもうれしいのですが、私はまだ自分のリクエストを機能させることができません... これがタンブルウィードにならないようにしてください。私はすでにそのバッジを取得しています! ありがとう。
編集
マニュアルに記載されている例を次に示します。
<soapenv:Body>
<api:sendObject>
<arg0>
<content>
<entry>
<key>1</key>
<value>
<![CDATA[
<table width="600">
<tr>
<td>
<font size="2" face="Arial">Our powerful algorithms already
found a matching profile that matches your criteria:
<br>Celina72 </font>
<img src="http://mypath/to/my/image.gif" width="50"
height="50" border="0" />
</td>]]></value>
</entry>
</content>
<dyn>
<entry>
<key>FIRSTNAME</key>
<value>john</value>
</entry>
</dyn>
<email>johnblum@flowerpower.com</email>
<encrypt>BdX7CqkmjSivyBgIcZoN4sPVLkx7FaXGiwsO</encrypt>
<notificationId>6464</notificationId>
<random>985A8B992601985A</random>
<senddate>2008-12-12T00:00:00</senddate>
<synchrotype>NOTHING</synchrotype>
<uidkey>EMAIL</uidkey>
</arg0>
</api:sendObject>
</soapenv:Body>
</soapenv:Envelope>
これが私のリクエストが生成するガベージです(__getLastRequest()から)
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://api.service.nsapi.emailvision.com/" xmlns:ns2="http://xml.apache.org/xml-soap">
<SOAP-ENV:Body>
<ns1:sendObject/>
<param1>AAAAAAAAAAAAAAAAAAAAAAAAAAA</param1>
<param2>123456789</param2>
<param3>BBBBBBBBBBBB</param3>
<param4>2013-09-09T00:00:00</param4>
<param5>NOTHING</param5>
<param6>EMAIL</param6>
<param7>
<ns2:Map>
<item>
<key>2</key>
<value>TEST</value>
</item>
</ns2:Map>
</param7>
<param8>
<ns2:Map>
<item>
<key>FIRSTNAME</key>
<value>John</value>
</item>
</ns2:Map>
<ns2:Map>
<item>
<key>LASTNAME</key>
<value>Smith</value>
</item>
</ns2:Map>
</param8>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
メールはどこに行きましたか?