php soap 錯誤 “looks like we got no XML document”

來源:互聯網
上載者:User
今天在想使用soap開發相關介面給合作的公司調用,但是遇到了這個錯誤。排查了很久,在google也查了很久,但都不是我所遇到的問題。不過我最終錯誤發現跟soapserver傳輸的資料量的大小有關係(不知道這個描述是否恰當)。當我從資料庫取10條資料,那麼就可以很容易的使用soapclient擷取到資料,但是當我從資料庫裡查詢1000條資料的時候就會報錯了(“Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in……”)!如果我直接運行person.class.php程式是可以顯示完整的xml文檔的。這根伺服器的環境配置會有關係嗎?我對於soap認識並不深,也只是現學現賣。希望有經驗的前輩們可以指點一二。多謝了!
以下是我的程式碼:

query($strGetList); $results = array(); $xmlString = "\n"; $xmlString .="\n"; while( $rows = $GLOBALS['le']->fetch_assoc() ) { $results[] = $rows; } foreach($results as $key=>$val) { $xmlString .="\n"; foreach($val as $k=>$v ) { if(strlen($v)>0) { $v = htmlspecialchars($v); $xmlString .=" $v\n"; } } $xmlString .="\n"; } $xmlString .="\n"; return $xmlString; }}//$p = new person;//echo $p->getInfo();//經測試xml中可以顯示所有資料--- 分割線 ---'abcd','encoding'=>'UTF-8'));$server->setClass('person');$server->handle();--- 分割線 ---'http://192.168.1.126:102/server.php','uri'=>'abcd', 'encoding' => 'UTF-8',));$s1 =$soap->__soapCall('getInfo',array());echo $s1;} catch(Exction $e) {echo $e->getMessage();}

回複內容:

今天在想使用soap開發相關介面給合作的公司調用,但是遇到了這個錯誤。排查了很久,在google也查了很久,但都不是我所遇到的問題。不過我最終錯誤發現跟soapserver傳輸的資料量的大小有關係(不知道這個描述是否恰當)。當我從資料庫取10條資料,那麼就可以很容易的使用soapclient擷取到資料,但是當我從資料庫裡查詢1000條資料的時候就會報錯了(“Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in……”)!如果我直接運行person.class.php程式是可以顯示完整的xml文檔的。這根伺服器的環境配置會有關係嗎?我對於soap認識並不深,也只是現學現賣。希望有經驗的前輩們可以指點一二。多謝了!
以下是我的程式碼:

query($strGetList); $results = array(); $xmlString = "\n"; $xmlString .="\n"; while( $rows = $GLOBALS['le']->fetch_assoc() ) { $results[] = $rows; } foreach($results as $key=>$val) { $xmlString .="\n"; foreach($val as $k=>$v ) { if(strlen($v)>0) { $v = htmlspecialchars($v); $xmlString .=" $v\n"; } } $xmlString .="\n"; } $xmlString .="\n"; return $xmlString; }}//$p = new person;//echo $p->getInfo();//經測試xml中可以顯示所有資料--- 分割線 ---'abcd','encoding'=>'UTF-8'));$server->setClass('person');$server->handle();--- 分割線 ---'http://192.168.1.126:102/server.php','uri'=>'abcd', 'encoding' => 'UTF-8',));$s1 =$soap->__soapCall('getInfo',array());echo $s1;} catch(Exction $e) {echo $e->getMessage();}

從SoapClient的異常"[Client] looks like we got no XML document"來看應該是響應有問題,所以首要的是查看響應訊息是什麼,有幾種方案可以協助你定位問題:

  1. 簡單一點的,你可以用SoapUI,查看響應是否真的有問題?是否沒有響應?
  2. Geek一點的,自製一個類比用戶端來檢查響應訊息,普通的SOAP協議並不難,只需用HTTP協議POST一小段XML給Server就行,代碼量應該在20行以內
  3. 我平時常用一點的,因為SOAP是走HTTP傳輸協議的,因此可以抓取整個HTTP Response,檢查其內容是否符合XML格式。抓取方式可以用tcpdump(Linux命令列)或HTTPTracer(Java跨平台,使用方便,我的最愛)
  4. 直接一點的,查看SoapClient.php的源碼,我沒記錯的話代碼量挺小的,尋找字串“looks like we got no XML document”,然後往回找到XML解析那段,在解析前輸出原始內容看看到底響應內容出現了什麼問題

別用soap,把介面發給你的資料dump出來看看。估計是網路傳輸出了啥問題,資料沒抓全,xml不完整,沒法解析。

你問題解決了嗎?求指導

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.