加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

cxf webservice 生成客户端代码以及调用

发布时间:2020-12-16 22:22:13 所属栏目:安全 来源:网络整理
导读:public static void main(String[] args) { String address = "http://localhost:9091/****/services/AparIntegrationService"; JaxWsProxyFactoryBean bean = new JaxWsProxyFactoryBean(); bean.setAddress(address); bean.setServiceClass(AparIntegratio
public static void main(String[] args) {
        String address = "http://localhost:9091/****/services/AparIntegrationService"; 
        JaxWsProxyFactoryBean bean = new JaxWsProxyFactoryBean();
        bean.setAddress(address);
        bean.setServiceClass(AparIntegrationService.class);
        AparIntegrationService ws = (AparIntegrationService) bean.create();
        XmlData xmlData = new XmlData();
        Header header = new Header();
        header.setDataDay("2016-01-20");
        header.setCompanyID("2");
        xmlData.setHeader(header);
        System.out.println(ws.transferInvoices("102",xmlData).getHeader().getDataDirect());
    }

cxf webservice 客户端代码如上显示,需导入cxf 相关jar包文件。
生成cxf方法如下:
1,拿到wsdl地址,如:http://localhost:9091/ceshi/services/AparIntegrationService?wsdl
2,从apache网站下载cxf稳定版,解压在本地
3,进入cxf 解压后文件bin,cmd进入该目录,输入wsdl2java http://localhost:9091/ceshi/services/AparIntegrationService?wsdl 4,会在cxf bin文件夹下生成客户端代码。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读