webService客户端搭建(三)

原文:http://www.cnblogs.com/xdp-gacl/p/4259481.html

1.生成本地wsdl文件

在项目src目录下打开cmd,输入

wsimport -keep http://10.4.17.129:14321/wbeService_01/WebService?wsdl

 

命令目的为在本地创建服务器提供的代码,以便于引用

 本地生成文件:

 

调用webService

package me.gacl.ws.client;

import me.gacl.ws.WebServiceImpl;
import me.gacl.ws.WebServiceImplService;

public class WSClient {
	public static void main(String[] args) {
//		通过实例引用获得实例工厂
		WebServiceImplService factory = new WebServiceImplService();
//		通过工厂得到实现类
		WebServiceImpl wsImpl = factory.getWebServiceImplPort();
//		通过实现类调用方法
		String save = wsImpl.save("11", "22");
		System.out.println(save);
	}
}

  

 二.手机号码归属地查询webService引用

网址:

http://www.webxml.com.cn/zh_cn/index.aspx:wsdl

cmd输入:

wsimport -keep http://www.webxml.com.cn/zh_cn/index.aspx:wsdl 

导入后

调用:

package me.gacl.ws.client;

import me.gacl.phonenum.MobileCodeWS;
import me.gacl.phonenum.MobileCodeWSSoap;

public class PhoneNumCilent {
	public static void main(String[] args) {
		MobileCodeWS ws = new MobileCodeWS();
		MobileCodeWSSoap port = ws.getPort(MobileCodeWSSoap.class);
		String mobileCodeInfo = port.getMobileCodeInfo("141123", null);
		System.out.println(mobileCodeInfo);
	}
}

  

 

转载于:https://www.cnblogs.com/duyunchao-2261/p/7447933.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值