webService一例

自己写了一个webServiec应用的小例子,以下是代码:
package cn.com.WebXml;


public class Test {

public static void main(String[] args)
{
WeatherWebServiceSoapStub weatherWebServiceSoapStub = null;
String net_endpoint = "http://www.webxml.com.cn/WebServices/WeatherWebService.asmx";
try{
weatherWebServiceSoapStub = new WeatherWebServiceSoapStub(new java.net.URL(net_endpoint),null);
ArrayOfString cityString = weatherWebServiceSoapStub.getWeatherbyCityName("北京");
System.out.println(cityString.getString(0));
System.out.println(cityString.getString(1));
System.out.println(cityString.getString(2));
System.out.println(cityString.getString(3));
System.out.println(cityString.getString(4));
System.out.println(cityString.getString(5));
System.out.println(cityString.getString(6));
System.out.println(cityString.getString(7));
System.out.println(cityString.getString(8));
}
catch(Exception ex)
{
ex.printStackTrace();
}
}

}
你也可以自己写一个类似的例子,但要知道XML文件和提供服务的地址才行,有了XML文件可以通过工具方便的自动生成所需文件!XML文件和所需的jar包见附件!eclispe插件由于大小关系请自行下载!

你可能感兴趣的:(.net,xml,webservice)