สวัสดีครับ
พอดีผมต้องการ ติดต่อ SERVICE ด้วย PHP ซึ่งลองเขียน Code ตามใน Thaicreate ตามด้านล่างครับ พอ print_r ตัวแปร แล้ว แสดง error
Uncaught SoapFault exception: [Client] looks like we got no XML document ครับ ไม่รู้ว่าเป็นจากสาเหตุอะไร ต้องทำอย่างไรบ้างรบกวนด้วยครับ
Code (PHP)
$client = new SoapClient('http://10.0.0.111:8080/services/OrderService.svc?wsdl',
array(
"trace" => 1, // enable trace to view what is happening
"exceptions" => 0, // disable exceptions
"cache_wsdl" => 0) // disable any caching on the wsdl, encase you alter the wsdl server
);
$data = $client->GetOrders(array($params)); // บรรทัดที่ Error
print_r($data);
echo "<hr>";
// display what was sent to the server (the request)
echo "<p>Request :".htmlspecialchars($client->__getLastRequest()) ."</p>";
echo "<hr>";
// display the response from the server
echo "<p>Response:".htmlspecialchars($client->__getLastResponse())."</p>";