Android中調用Web Services

來源:互聯網
上載者:User

Android中調用Web Services有很多方法,我們現在使用的是ksoap,它是SOAP web services的用戶端包,ksoap現在版本為2.0.它的一個主要優點就是對dotNET相容性比較不錯。

首先下載ksoap的包檔案(),在Eclispe的Package Explorer中右鍵項目,Build Path>Add Libraries,找到ksoap2-android-assembly-2.4-jar-with-dependencies.jar添加該引用。代碼如下:

public class WSHelper {final static String WSUrl="http://xxx/WSUrl.asmx";private static String namespace = "http://tempuri.org/";/************************************* * 擷取web services內容 * @param url * @param params * @return *************************************/public static String GetResponse(String method,List<BasicNameValuePair> params){try {String url = WSUrl;SoapObject request = new SoapObject(namespace, method);for(int i=0,len=params.size();i<len;i++){request.addProperty(params.get(i).getName(), params.get(i).getValue());}SoapSerializationEnvelope envelope =         new SoapSerializationEnvelope(SoapEnvelope.VER11);     envelope.dotNet = true;     envelope.setOutputSoapObject(request);         AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport(url);     androidHttpTransport.call(namespace + method, envelope);         SoapPrimitive result = (SoapPrimitive)envelope.getResponse();     return result.toString();} catch (Exception e) {return "Error:calling the web services error";}}}

調用時代碼如下:

String method = "MethodName";//方法名稱List<BasicNameValuePair> params = new ArrayList<BasicNameValuePair>();params.add(new BasicNameValuePair("userId", String.valueOf(1995)));return WSHelper.GetResponse(method,params);

 這裡參數可以定義多個,返回時是以String類似來返回。

注意由於我們調用Web sevices,就需要程式有訪問網路的許可權,因此需要在AndroidManifest.xml中manifest節中增加訪問網路許可權的定義:

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.