现在,网上提供的免费的webservice服务的网站: http://www.webxml.com.cn/
从扩展名上看,是 .net构建的网站。
看看功能的实现效果:
需求:我们要远程调用手机号归属地的查询:
开发步骤: 1.建立工程:ws01_firstws 2.用jdk自带的工具读取wsdl地址
新建
结果输出:
根据远程的服务生成的这些内容称之为stub—桩,将生成的桩复制到项目的目录中去: 下一步:要编写客户端调用。 public class FirstClient { public static void main(String[] args) { //1.找到桩中的服务类,实例化它 MobileCodeWS mcs =new MobileCodeWS(); //2通过服务得到接口的实例 MobileCodeWSSoap mc =mcs.getMobileCodeWSSoap(); //3.通过接口调用方法得到数据 String str =mc.getMobileCodeInfo("18618372386", ""); //4打印: System.out.println(str); } } 打印的结果:
说明:我们用java客户端,调用了远程的 .net的webservice的服务。!