博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 调用.NET WebServices
阅读量:5122 次
发布时间:2019-06-13

本文共 1923 字,大约阅读时间需要 6 分钟。

下载Ksoap2.jar,

 

import  org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.*; import  org.ksoap2.transport.HttpTransportSE; import  android.os.Handler;
Handler handler = new Handler() {
@Override public void handleMessage(Message msg) {
super.handleMessage(msg); Bundle bundle= msg.getData(); String result=bundle.getString("result"); Toast.makeText(LoginActivity.this,result,Toast.LENGTH_SHORT).show(); } };
new Thread() {
public void run() {
String Namespace = "http://tempuri.org/"; String MethodName = "UserLogin"; String WEB_SERVICE_URL = "http://192.168.4.2/myWeb/User.asmx"; SoapObject request = new SoapObject(Namespace, MethodName); // 2、设置调用方法的参数值,如果没有参数,可以省略, // 3、生成调用Webservice方法的SOAP请求信息。该信息由SoapSerializationEnvelope对象描述 SoapSerializationEnvelope envelope = new SoapSerializationEnvelope( SoapEnvelope.VER12); envelope.bodyOut = request; // c#写的应用程序必须加上这句 envelope.dotNet = true; HttpTransportSE ht = new HttpTransportSE(WEB_SERVICE_URL); // 使用call方法调用WebService方法 try {
ht.call(null, envelope); } catch (Exception e) {
e.printStackTrace(); } try {
final SoapPrimitive result = (SoapPrimitive) envelope.getResponse(); if (result != null) {
Log.d("----收到的回复----", result.toString()); Message message=new Message(); Bundle bundle=new Bundle(); bundle.putString("result",result.toString()); message.setData(bundle); handler.sendMessage(message); } } catch (Exception e) {
Log.e("----发生错误---", e.getMessage()); e.printStackTrace(); } } }.start();

转载于:https://www.cnblogs.com/Chareree/p/6119882.html

你可能感兴趣的文章
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>
Yii2 Lesson - 03 Forms in Yii
查看>>
Python IO模型
查看>>
Ugly Windows
查看>>
DataGridView的行的字体颜色变化
查看>>
Java再学习——关于ConcurrentHashMap
查看>>
如何处理Win10电脑黑屏后出现代码0xc0000225的错误?
查看>>
局域网内手机访问电脑网站注意几点
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Day19内容回顾
查看>>
第七次作业
查看>>