1
我有一個帶有位置的wsdl文件,我想通過soap發送請求值,我正在嘗試以下方案。但它沒有調用wsdl函數。請幫助我如何發送肥皂請求參數。如何在php中使用soap將參數發送到wsdl文件
<xs:complexType name="wsNotification">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="notificationList" nillable="true" type="tns:notificationsParam"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="notificationsParam">
<xs:sequence>
<xs:element minOccurs="0" name="email" type="xs:string"/>
<xs:element minOccurs="0" name="phone" type="xs:string"/>
</xs:sequence>
</xs:complexType>
下面的代碼我使用在PHP中使用肥皂功能
$client = new SoapClient("http://192.100.1.8:8080/getAPI/ws/WSNotification?wsdl",
array('email' => "[email protected]",
'phone' => "97122555")
);
echo "Response:\n" . $client->__getLastResponse() . "<br>";
我沒有得到從WSDL任何迴應時,我調用上面肥皂函數調用WSDL。請幫助我如何發送參數從PHP到肥皂。