spring boot 集成 Apache CXF 调用 .NET 服务端 WebService

时间:2022-12-26 15:04:25

1. pom.xml加入 cxf 的依赖

<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>3.1.6</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>3.1.6</version>
</dependency>

2. 代码

  2.1 基本参数类型调用

JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("XXX.wsdl");
/*echo: 方法名
*test echo : 参数
*/
Object[] res = client.invoke("echo", "test echo");
System.out.println("Echo response: " + res[0]);

  2.2 对象调用

    JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("XXX.wsdl");

Object person = Thread.currentThread().getContextClassLoader().loadClass("com.acme.Person").newInstance();
Method m = person.getClass().getMethod("setName", String.class);
m.invoke(person, "Joe Schmoe");
Method m1 = person.getClass().getMethod("setCustomerID", String.class);
Method m2 = person.getClass().getMethod("setItemID", String.class);
Method m3 = person.getClass().getMethod("setQty", Integer.class);
Method m4 = person.getClass().getMethod("setPrice", Double.class);
m1.invoke(person, "C001");
m2.invoke(person, "I001");
m3.invoke(person, 100);
m4.invoke(person, 200.00); client.invoke("addPerson", person);

3. XXX.wsdl 文件的生成方法

  如: http://www.webxml.com.cn/WebServices/*pSearchWebService.asmx?WSDL

  浏览器打开上面的地址,CTRL+S直接保存,默认是个xml文件,可改成wsdl ,也可不改,代码中直接用xml

  java调用.net的web service服务时,会产生异常,需要修改wsdl文件,直接注释掉<s:element ref="s:schema" />

4. wsdl2java工具生成JAVA客户端调用代码

  4.1 下载Apache CXF ( http://cxf.apache.org/download.html )

spring boot 集成 Apache CXF 调用 .NET 服务端 WebService

  4.2 下载后直接使用 cd 到cxf的bin目录,生成的目的是查看bean里面的方法名及属性

spring boot 集成 Apache CXF 调用 .NET 服务端 WebService

官网有更直接的描述( http://cxf.apache.org/docs/dynamic-clients.html )

踩过的坑:

1. -p wsdl_java 是生成 Java 文件的包名,会直接写到接口中,若实际项目与包名不同,则WebService连接会出错。如下图,命令生成的路径 wsdl_java.ReceiveMsg , 但项目中使用 com.webservice.gather.client.ReceiveMeg

spring boot 集成 Apache CXF 调用 .NET 服务端 WebService