我的web服務在.net中,我已經成功地從android響應中使用KSOAP2獲取數據。我想從頭文件中獲得Response Header和一些細節,任何人都可以幫助如何使用KSOAP2獲取Response頭文件?從android使用Ksoap2從web服務獲取Respose標題
2
A
回答
1
> The HttpTransportSE class exposes the method call that, beyond the
> required SOAP parameters, also accepts a List of HeaderProperty
> instances. It also returns a like List. This provides the ability to
> append additional headers to the request and review the returned
> headers. Since a cookie is just one of those header, one can use this
> facility to send and receive cookies.
The response headers are returned by the "call" method. So you just need to keep track of your JSESSIONID and pass it back again for each call. I overlooked this small detail at first as well. ;)
Keep in mind that the server returns the JSESSIONID with a "set-cookie" header, but it needs to be sent with a "cookie" header.
List respHeaders = android_http.call(SOAP_ACTION, envelope2, reqHeaders);
for(int ix=0; ix<respHeaders.size(); ix++) {
HeaderProperty hp = (HeaderProperty)respHeaders.get(ix);
System.out.println("Header"+ix+"="+hp.getKey()+"/"+hp.getValue());
}
相關問題
- 1. 從Android與KSOAP2調用.NET Web服務
- 2. Android Ksoap2 web服務
- 3. 使用KSOAP2的Android ASP Web服務
- 4. Android WSDL Web服務ksoap2
- 5. Android應用/ ksoap2 - 嘗試從Web服務獲取響應時出錯
- 6. Android從aspx web服務中獲取xml
- 7. 通過ksoap2從Android調用Java Web服務
- 8. 使用Qooxdoo從Web服務獲取數據時遇到問題
- 9. 在Android中使用SOAP從Web服務獲取多個數據
- 10. 使用ksoap2從Web服務獲取多個值Android
- 11. Java Web服務與ksoap2爲Android
- 12. 連接到Web服務的Android kSOAP2。
- 13. 的Android KSOAP2 Web服務錯誤
- 14. 從android中獲取ksoap2的數據
- 15. 如何從android服務器中使用web服務獲取數據
- 16. 從Android服務中獲取Activity.Class服務
- 17. 從asp.net服務器使用Android中的ksoap2下載大文件
- 18. 調用.NET Web服務超時(使用KSOAP2的Android開發)
- 19. 問題使用Flex從SOAP Web服務
- 20. 從本地從android調用web服務
- 21. 使用KSOAP2從eclipse調用web方法
- 22. XmlPullParserException在Android中使用Ksoap2消費php web服務
- 23. Android ksoap2 web服務不推薦使用的錯誤
- 24. 從Android調用Web服務時獲取異常
- 25. 從Web服務中獲取-1
- 26. 從Web服務獲取返回列表
- 27. 從web服務獲取json字符串
- 28. 從Web服務獲取空白數組
- 29. 從Web服務url獲取json數組
- 30. 從php獲取值到c#web服務
如何使用KSOAP2在android中連接服務器時probelem中respose的狀態代碼? – Roshni