首页 > 代码库 > android调用webservice方法
android调用webservice方法
String NAMESPACE="http://WebXml.com.cn/";String METHOD_NAME="getMobileCodeInfo"; String URL = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx";String SOAP_ACTION = "http://WebXml.com.cn/getMobileCodeInfo";SoapObject rpc = new SoapObject(NAMESPACE, METHOD_NAME);rpc.addProperty("mobileCode",phoneSec);rpc.addProperty("userId","");SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.bodyOut = rpc; envelope.dotNet = true; envelope.setOutputSoapObject(rpc); HttpTransportSE ht = new HttpTransportSE(URL); ht.debug = true; ht.call(SOAP_ACTION, envelope); // 获取返回的数据 SoapObject object = (SoapObject) envelope.bodyIn; // 获取返回的结果 String result = object.getProperty(0).toString(); t1.setText(result);
android调用webservice方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。