響應消息體
這是我透過PHP發送的請求訊息體
<code><?php public function getXml() { $xmlStr = <<<xml <?xml version="1.0" encoding="utf-8"?> <msg v="1.0" id="1470798667"> <ctrl><agentID>800205</agentID><cmd>2000</cmd><timestamp>1470798667</timestamp><md>17468b91d6b9bc1debb052a1f9a66fee</md></ctrl> <body><loto lotoid="001" issue=""/></body></msg> xml; $url = 'http://175.25.25.41:7070/billservice/sltAPI'; $header[] = 'Content-type: text/xml; charset=utf-8'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlStr); $response = curl_exec($ch); if(curl_errno($ch)){ print curl_error($ch); } curl_close($ch); var_dump($response); }</code>
但是無法解析,不知道問題出在什麼地方,總是回傳這樣的結果。
解析結果如圖所示: (errorcode = 100)代表錯誤碼
正確的回傳結果,是這樣的。這裡我只透過表單提交完成解析,是正常的。
我在本地發送xml訊息 始終無法解析 求助各位大神們!
響應消息體
這是我透過PHP發送的請求訊息體
<code><?php public function getXml() { $xmlStr = <<<xml <?xml version="1.0" encoding="utf-8"?> <msg v="1.0" id="1470798667"> <ctrl><agentID>800205</agentID><cmd>2000</cmd><timestamp>1470798667</timestamp><md>17468b91d6b9bc1debb052a1f9a66fee</md></ctrl> <body><loto lotoid="001" issue=""/></body></msg> xml; $url = 'http://175.25.25.41:7070/billservice/sltAPI'; $header[] = 'Content-type: text/xml; charset=utf-8'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlStr); $response = curl_exec($ch); if(curl_errno($ch)){ print curl_error($ch); } curl_close($ch); var_dump($response); }</code>
但是無法解析,不知道問題出在什麼地方,總是回傳這樣的結果。
解析結果如圖所示: (errorcode = 100)代表錯誤碼
正確的回傳結果,是這樣的。這裡我只透過表單提交完成解析,是正常的。
我在本地發送xml訊息 始終無法解析 求助各位大神們!