package com.ws.cxf.client; import org.apache.cxf.jaxws.JaxWsProxyfactorybean; import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory; public class Client { public static void main(String[] args) { //**********依赖服务器端***************** /* * //创建WebService客户端代理工厂 JaxWsProxyfactorybean factory = new JaxWsProxyfactorybean(); // 注册WebService接口 factory.setServiceClass(IHelloWorld.class); // 设置WebService地址 factory.setAddress("http://localhost:8080/cxfTest/webservice/HelloWorld"); IHelloWorld iHelloWorld = (IHelloWorld) factory.create(); System.out.println(iHelloWorld.sayHello("jim")); */ //**********不依赖服务器端***************** JaxWsDynamicClientFactory clientFactory = JaxWsDynamicClientFactory.newInstance(); org.apache.cxf.endpoint.Client client = clientFactory.createClient("http://localhost:8080/cxfTest/webservice/HelloWorld?wsdl"); try { Object[] result = client.invoke("sayHello","jim");//invoke(方法名,参数) System.out.println(result[0]); System.exit(0); } catch (Exception e) { e.printStackTrace(); } } }
注意:
当不依赖服务器端时,接口的实现类必须在@WebService中加上表空间,否则会报异常:
org.apache.cxf.common.i18n.UncheckedException: No operation was found with the name {http://daoImpl.cxf.ws.com/}sayHello.
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:331)
at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:325)
at com.ws.cxf.client.Client.main(Client.java:25)
接口实现如下
package com.ws.cxf.daoImpl; import javax.jws.WebService; import com.ws.cxf.dao.IHelloWorld; @WebService(endpointInterface="com.ws.cxf.dao.IHelloWorld",serviceName="helloWorld",targetNamespace="http://dao.cxf.ws.com/") public class HelloWorldImpl implements IHelloWorld{ public String sayHello(String username) { System.out.println("sayHello() is called"); return username +" helloWorld"; } }原文链接:https://www.f2er.com/javaschema/285599.html