webService客户端service方式搭建
Posted 看,那条狗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webService客户端service方式搭建相关的知识,希望对你有一定的参考价值。
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方式相同。
以上是关于webService客户端service方式搭建的主要内容,如果未能解决你的问题,请参考以下文章
CXF方式搭建本地webservice服务和soap方式调用踩坑
webservice - 使用JAX-WS注解的方式快速搭建服务端和客户端
webService 客户端调用及异常信息First Element must contain the local name, Envelope , but found definitions(示例代