Android 调用.NET webservice

package com.fairyeye.simple;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;

import org.ksoap2.transport.HttpTransportSE;

public class MiniSystemActivity extends Activity {
	/** Called when the activity is first created. */
	private EditText userName;
	private EditText userPass;
	private Button btnLogin;
	private Button btnClose;
	private TextView tv;
	final String SOAP_ACTION = "http://tempuri.org/HelloWorld"; 
    private static final String METHOD_NAME = "HelloWorld"; 
    private static final String NAMESPACE = "http://tempuri.org/"; 
    private static final String URL = "http://10.0.2.2/webser/webtest.asmx"; 

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		btnLogin = (Button) findViewById(R.id.btnLogin);

		btnClose = (Button) findViewById(R.id.btnClose);
		userName = (EditText) findViewById(R.id.userName);
		userPass = (EditText) findViewById(R.id.userPass);
		tv = (TextView)findViewById(R.id.txtView);
		btnLogin.setOnClickListener(listener);
		call();

	}

	private OnClickListener listener = new OnClickListener() {

		public void onClick(View v) {
			// TODO Auto-generated method stub
			if (userName.getText().toString().trim().equals("222")
					&& userPass.getText().toString().trim().equals("222")) {
				Intent intent = new Intent();
				intent.setClass(MiniSystemActivity.this, testActivity.class);
				startActivity(intent);

			} else {
				Toast.makeText(MiniSystemActivity.this, "用户或密码错误!",
						Toast.LENGTH_LONG).show();

			}
		}
	};

	public void call() {
		try {
			SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
			//request.addProperty("passonString", "Rajapandian"); //这个是传递参数的
			SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
					SoapEnvelope.VER11);
			envelope.dotNet = true;
			envelope.setOutputSoapObject(request);
			HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
			androidHttpTransport.call(SOAP_ACTION, envelope);
			Object result = (Object) envelope.getResponse();
			tv.setText(result.toString()); 
		} catch (Exception e) {
			System.out.println(e.getMessage());
			tv.setText(e.getMessage());
		}
	}
}
---------------------------------以上 实现了 Android内通过Ksoap包的方法 调用了 .net webserivce中 helloworld 方法。


1.在ADT 虚拟机中 localhost/127.0.01是不行的。虚拟机中默认10.0.2.2为本地地址 所以我们在本地的.NET webservice 如果为localhost/webser/webtest.asmx 在Android模拟器中为10.0.2.2/webser/webtest/asmx.(该问题 亲自测试)

2.记得 在AndroidManifest.xml 加入 允许访问 Internet  <uses-permission android:name="android.permission.INTERNET" />

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值