android中到底如何调用web services?
最近弄了web services,然后想在android中先测试下是否能顺利调用。但是,调用了好久,都没成功。
测试的是用HelloWorld方法。
WS服务端的测试代码很简单,如下:
using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Linq;using System.Web;using System.Web.Services;using System.Web.Services.Protocols;using System.Xml.Linq;namespace WebService1{ /// <summary> /// Service1 的摘要说明 /// </summary> //[WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 // [System.Web.Script.Services.ScriptService] [WebService(Description="这是一个用VS2008创建的小破的第一个WS", Name="MyFirstWS",Namespace="http://www.ihei5.com/WS")] public class Service1 : System.Web.Services.WebService { [WebMethod(CacheDuration=60,Description="这是一个返回HelloWorld的方法")] public string HelloWorld() { return "Hello World"; } [WebMethod(Description="这是一个求2个数的和的方法")] public double sum(double x, double y) { return x + y; } }}