博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
webService客户端service方式搭建(四)
阅读量:5134 次
发布时间:2019-06-13

本文共 830 字,大约阅读时间需要 2 分钟。

package me.gacl.ws.client;import java.net.URL;import javax.xml.namespace.QName;import javax.xml.ws.Service;import me.gacl.phonenum.MobileCodeWSSoap;public class weatherService_Service {	public static void main(String[] args) throws Exception {		URL url = new URL("http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl");//		namespaceURI -- 命名空间地址//		localPart	-- 服务视图名				QName qname = new QName("http://WebXml.com.cn/", "MobileCodeWS");//		serviceName	--服务名称//		wsdlDocumentLocation -- wsdl地址		Service service = Service.create(url,qname);//		获取service实现类		MobileCodeWSSoap mobileCodeWSSoap = service.getPort(MobileCodeWSSoap.class);		String mobileCodeInfo = mobileCodeWSSoap.getMobileCodeInfo("1861234","");		System.out.println(mobileCodeInfo);	}}

  代码如上,获取wsdl方式相同。

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

你可能感兴趣的文章
Oracle同义词创建及其作用
查看>>
技术名称(随学随更新)
查看>>
在make php-5.5.5时提示没有X11/xpm.h,怎么解决!
查看>>
如何让你的数据有null
查看>>
前端设计(一)
查看>>
大道至简第六章读后感
查看>>
@RabbitListener 与 @RabbitHandler 及 消息序列化
查看>>
Visual Studio 2013 Update 3 RTM 正式发布
查看>>
spring mvc 依赖包
查看>>
fiddler 抓取iphone发出的http和https包
查看>>
shell实现四则运算简单方法
查看>>
算法--leetcode 561. Array Partition I
查看>>
算法设计与分析实验报告
查看>>
对js里bind函数的理解
查看>>
线程池
查看>>
大图轮播
查看>>
外籍团队工作有感:5、关于效率
查看>>
应用服务器集群的伸缩性设计
查看>>
【转】字体渲染
查看>>
静态网页与动态网页的区别
查看>>