2012-03-16 57 views
0

我試圖通過ksoap2連接到Web服務,並且在LogCat上收到以下錯誤消息。Android應用/ ksoap2 - 嘗試從Web服務獲取響應時出錯

I /的System.out(497):的SOAPFault - 的faultcode: 'S:服務器' faultstring: '對於輸入字符串: 「」' faultactor: '空' 的細節:[email protected]

任何想法可能是什麼問題?

在此先感謝!

我已經添加了下面的部分代碼,我收到錯誤..我試圖通過SoapPrimitive檢索結果。

`try {
HttpTransportSE androidHttpTransport1 = new HttpTransportSE(URL); //進行肥皂調用。 androidHttpTransport1.call(SOAP_Levels,envelope1);

   SoapPrimitive result1 = (SoapPrimitive)envelope1.getResponse();` 

回答