Java如何调用webService接口

写在前面:最近工作中用到、具体原理没写、只有使用过程、记录一下、方便以后使用的时候回来看

1、先用soapUi访问webService接口地址、然后 在Java代码封装、请求的参数
先看一下需要封装的结构体、下面代码片从soapUI粘贴出来的

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.outsource.bussiness.server.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:entranceOrLeaveOutSourcePersonInfo>
         <!--Optional:-->
         <msgHeader>
            <!--Optional:-->
            <comment>?</comment>
            <!--Optional:-->
            <count>?</count>
            <!--Optional:-->
            <interfaceID>?</interfaceID>
            <!--Optional:-->
            <messageID>?</messageID>
            <!--Optional:-->
            <receiver>?</receiver>
            <!--Optional:-->
            <sender>?</sender>
            <!--Optional:-->
            <transID>?</transID>
         </msgHeader>
         <!--Zero or more repetitions:-->
         <persons>
            <!--Optional:-->
            <accessControl>?</accessControl>
            <!--Optional:-->
            <companyID>?</companyID>
            <!--Optional:-->
            <deptLevel>?</deptLevel>
            <!--Optional:-->
            <emailAddress>?</emailAddress>
            <!--Optional:-->
            <familyAddress>?</familyAddress>
            <!--Optional:-->
            <gender>?</gender>
            <!--Optional:-->
            <id>?</id>
            <!--Optional:-->
            <idCardNo>?</idCardNo>
            <!--Optional:-->
            <isApartment>?</isApartment>
            <!--Optional:-->
            <isParty>?</isParty>
            <!--Optional:-->
            <mobileNumber>?</mobileNumber>
            <!--Optional:-->
            <name>?</name>
            <!--Optional:-->
            <natureOfBusiness>?</natureOfBusiness>
            <!--Optional:-->
            <officeArea>?</officeArea>
            <!--Optional:-->
            <passportNo>?</passportNo>
            <!--Optional:-->
            <post>?</post>
            <!--Optional:-->
            <projectID>?</projectID>
            <!--Optional:-->
            <remark>?</remark>
            <!--Optional:-->
            <rowidObject>?</rowidObject>
            <!--Optional:-->
            <servicePosition>?</servicePosition>
            <!--Optional:-->
            <serviceType>?</serviceType>
            <!--Optional:-->
            <systemID>?</systemID>
            <!--Optional:-->
            <workPlaceCity>?</workPlaceCity>
            <!--Optional:-->
            <workPlaceProvince>?</workPlaceProvince>
         </persons>
         <!--Optional:-->
         <operateType>?</operateType>
         <!--Optional:-->
         <operateId>?</operateId>
         <!--Optional:-->
         <operateUserId>?</operateUserId>
         <!--Optional:-->
         <operateUserName>?</operateUserName>
         <!--Optional:-->
         <operateUserDept>?</operateUserDept>
      </ser:entranceOrLeaveOutSourcePersonInfo>
   </soapenv:Body>
</soapenv:Envelope>

开始根据soapUI的xml 封装参数

    //dto就是你实际业务场景需要用的数据
    //拼接内容和soapUI访问的webService接口的的xml保持一致
    private StringBuilder MDMPersonXml(xxxDTO dto) {
        StringBuilder sbf = new StringBuilder();
        sbf.append("<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://service.outsource.bussiness.server.com/\">")
            .append("<soapenv:Header/>")
            .append("<soapenv:Body>")
            .append("<ser:entranceOrLeaveOutSourcePersonInfo>")
            .append("<msgHeader>")
            .append("<messageID>").append(new Date().getTime()).append("</messageID>")
            .append("<interfaceID></interfaceID>")
            .append("<transID>").append(new Date().getTime()).append("</transID>")
            .append("<sender>JF_OPM</sender>")
            .append("<receiver>JF_MDM</receiver>")
            .append("<count></count>")
            .append("<comment></comment>")
            .append("</msgHeader>");
        for (TpmPersonnelDTO personnel : dto.getPersonnelList()) {
            sbf.append("<persons>")
	            .append("<accessControl>").append(getMapval(personnel.getAccessControl())).append("</accessControl>")
	            .append("<deptLevel>").append(getMapval(personnel.getDeptLevel())).append("</deptLevel>")
	            .append("<emailAddress>").append(getMapval(personnel.getEmailAddress())).append("</emailAddress>")
	            .append("<familyAddress>").append(getMapval(personnel.getFamilyAddress())).append("</familyAddress>")
	            .append("<gender>").append(getMapval(personnel.getGender())).append("</gender>")
	            .append("<id>").append(getMapval(personnel.getMdmApplyId())).append("</id>")
	            .append("<idCardNo>").append(getMapval(personnel.getIdCardNo())).append("</idCardNo>")
	            .append("<isApartment>").append(getMapval(personnel.getIsApartment())).append("</isApartment>")
	            .append("<isParty>").append(getMapval(personnel.getIsParty())).append("</isParty>")
	            .append("<mobileNumber>").append(getMapval(personnel.getMobileNumber())).append("</mobileNumber>")
	            .append("<name>").append(getMapval(personnel.getName())).append("</name>")
	            .append("<natureOfBusiness>").append(getMapval(personnel.getNatureOfBusiness())).append("</natureOfBusiness>")
	            .append("<officeArea>").append(getMapval(personnel.getOfficeArea())).append("</officeArea>")
	            .append("<passportNo>").append(getMapval(personnel.getPassportNo())).append("</passportNo>")
	            .append("<post>").append(getMapval(personnel.getPost())).append("</post>")
	            .append("<remark>").append(getMapval(personnel.getRemark())).append("</remark>")
	            .append("<rowidObject>").append(getMapval(personnel.getRowidObject())).append("</rowidObject>")
	            .append("<servicePosition>").append(getMapval(personnel.getServicePosition())).append("</servicePosition>")
	            .append("<workPlaceCity>").append(getMapval(personnel.getWorkPlaceCity())).append("</workPlaceCity>")
	            .append("<workPlaceProvince>").append(getMapval(personnel.getWorkPlaceProvince())).append("</workPlaceProvince>")
	            .append("<projectID>").append(getMapval(personnel.getProjectId())).append("</projectID>")
	            .append("<systemID>").append(getMapval(personnel.getSystemId())).append("</systemID>");
             	append("<serviceType>").append(getMapval(dto.getPersonnelType())).append("</serviceType>");
            	.append("<companyID>").append(getMapval(personnel.getCompanyId())).append("</companyID>")
                .append("</persons>");
        }
        SysUserUtilDTO dept = sysUserService.getDept(dto.getCreator());
        sbf.append("<operateType>").append(getMapval(dto.getType())).append("</operateType>")
            .append("<operateId>").append(dto.getId()).append("</operateId>")
            .append("<operateUserId>").append(getMapval(dto.getApplicant())).append("</operateUserId>")
            .append("<operateUserName>").append(getMapval(dto.getApplicantName())).append("</operateUserName>")
            .append("<operateUserDept>").append(getMapval(dto.getCompany()))
            .append(',' + getMapval(dept.getDeptIdTwo()))
            .append(',' + getMapval(dept.getDeptIdOne()))
            .append("</operateUserDept>")
            .append("</ser:entranceOrLeaveOutSourcePersonInfo>")
            .append("</soapenv:Body>")
            .append("</soapenv:Envelope>");
        return sbf;
    }

根据封装好的请求参数、请求webService接口

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.HttpURLConnection;
import java.net.URL;
/**
     * 发起WebService请求
     *
     * @param url     请求url
     * @param request 请求
     * @return 请求结果
     */
    private String getWebServiceData2(String url, StringBuilder request) {
        System.out.println("发起WebService请求");
        System.out.println("url");
        StringBuilder result = new StringBuilder();
        try {
            URL restUrl = new URL(url);
            HttpURLConnection conn = (HttpURLConnection) restUrl.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-Type", "application/xml; charset=utf-8");
            conn.setDoOutput(true);

            PrintStream ps = new PrintStream(conn.getOutputStream());
            ps.print(request);
            ps.close();

            BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line = "";
            while ((line = br.readLine()) != null) {
                result.append(line);
            }
            br.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            logger.error("异常信息=="+e.toString());
        }
        return result.toString();
    }
可以使用 axios 发送 POST 请求来调用 Java WebService SOAP 接口。首先需要了解 SOAP 协议及其请求格式,然后可以按照以下步骤进行调用。 1. 安装 axios 可以使用 npm 安装 axios: ``` npm install axios --save ``` 2. 构造 SOAP 请求 构造 SOAP 请求的格式如下: ```xml <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.example.com"> <soapenv:Header/> <soapenv:Body> <ser:methodName> <!--Optional:--> <arg0>?</arg0> <!--Optional:--> <arg1>?</arg1> </ser:methodName> </soapenv:Body> </soapenv:Envelope> ``` 其中,`ser:methodName` 为要调用Java WebService 方法名,`arg0`、`arg1` 等为方法参数,可以根据实际情况进行修改。 3. 发送 SOAP 请求 使用 axios 发送 SOAP 请求的代码如下: ```javascript import axios from 'axios' const url = 'http://example.com/soap/service' // WebService 地址 const action = 'http://service.example.com/methodName' // SOAPAction const xml = ` <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.example.com"> <soapenv:Header/> <soapenv:Body> <ser:methodName> <!--Optional:--> <arg0>?</arg0> <!--Optional:--> <arg1>?</arg1> </ser:methodName> </soapenv:Body> </soapenv:Envelope> ` // SOAP 请求体 axios.post(url, xml, { headers: { 'Content-Type': 'text/xml;charset=UTF-8', 'SOAPAction': action } }).then(response => { console.log(response.data) }).catch(error => { console.log(error) }) ``` 其中,`url` 为 WebService 地址,`action` 为 SOAPAction,需要根据实际情况进行修改。`xml` 为 SOAP 请求体,需要根据实际情况进行修改。在发送请求时,需要指定 `Content-Type` 为 `text/xml;charset=UTF-8`,并在请求头中加入 `SOAPAction`。 4. 解析响应 Java WebService 返回的响应也是 SOAP 格式的,需要进行解析。可以使用第三方库 `xml2js` 将响应转换为 JavaScript 对象,代码如下: ```javascript import axios from 'axios' import { parseString } from 'xml2js' const url = 'http://example.com/soap/service' // WebService 地址 const action = 'http://service.example.com/methodName' // SOAPAction const xml = ` <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.example.com"> <soapenv:Header/> <soapenv:Body> <ser:methodName> <!--Optional:--> <arg0>?</arg0> <!--Optional:--> <arg1>?</arg1> </ser:methodName> </soapenv:Body> </soapenv:Envelope> ` // SOAP 请求体 axios.post(url, xml, { headers: { 'Content-Type': 'text/xml;charset=UTF-8', 'SOAPAction': action } }).then(response => { parseString(response.data, (error, result) => { if (error) { console.log(error) } else { console.log(result) } }) }).catch(error => { console.log(error) }) ``` 在响应中,可以通过 `result.Body` 获取到 Java WebService 返回的实际内容,需要根据实际情况进行解析。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值